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

Commit 2131a3ca authored by Bryan Mawhinney's avatar Bryan Mawhinney
Browse files

Fix typo when parsing external platform version from Settings.

May fix http://b/2569139

Change-Id: I437f614fd25512bd461812feddb091edcd12ccb7
parent 2adec762
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);
   }
}