am 8b0047f8: Merge "Fix typo when parsing external platform version from Settings." into froyo

Merge commit '8b0047f82504ebc9b282ed950a85a758b59c4e14' into froyo-plus-aosp

* commit '8b0047f82504ebc9b282ed950a85a758b59c4e14':
  Fix typo when parsing external platform version from Settings.
This commit is contained in:
Dianne Hackborn
2010-04-23 15:22:55 -07:00
committed by Android Git Automerger

View File

@@ -8802,7 +8802,7 @@ class PackageManagerService extends IPackageManager.Stub {
}
String external = parser.getAttributeValue(null, "external");
if (external != null) {
mInternalSdkPlatform = Integer.parseInt(external);
mExternalSdkPlatform = Integer.parseInt(external);
}
} catch (NumberFormatException e) {
}
@@ -9952,4 +9952,3 @@ class PackageManagerService extends IPackageManager.Stub {
android.provider.Settings.Secure.DEFAULT_INSTALL_LOCATION, PackageHelper.APP_INSTALL_AUTO);
}
}