Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cdf96f75 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Git Automerger
Browse files

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

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

* commit '8b0047f8':
  Fix typo when parsing external platform version from Settings.
parents f6adae78 8b0047f8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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);
   }
}