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

Commit 45e40b3d authored by Narayan Kamath's avatar Narayan Kamath Committed by Android Git Automerger
Browse files

am d57eefa4: am c83443b4: am ccfe6bd4: Merge "Remove unused local field." into lmp-mr1-dev

* commit 'd57eefa4':
  Remove unused local field.
parents ae601bcb d57eefa4
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -1423,8 +1423,6 @@ public class PackageManagerService extends IPackageManager.Stub {
                Slog.w(TAG, "No SYSTEMSERVERCLASSPATH found!");
            }
            boolean didDexOptLibraryOrTool = false;
            final List<String> allInstructionSets = getAllInstructionSets();
            final String[] dexCodeInstructionSets =
                getDexCodeInstructionSets(allInstructionSets.toArray(new String[allInstructionSets.size()]));
@@ -1457,7 +1455,6 @@ public class PackageManagerService extends IPackageManager.Stub {
                                } else {
                                    mInstaller.patchoat(lib, Process.SYSTEM_UID, true, dexCodeInstructionSet);
                                }
                                didDexOptLibraryOrTool = true;
                            }
                        } catch (FileNotFoundException e) {
                            Slog.w(TAG, "Library not found: " + lib);
@@ -1508,10 +1505,8 @@ public class PackageManagerService extends IPackageManager.Stub {
                                                                                 false);
                            if (dexoptRequired == DexFile.DEXOPT_NEEDED) {
                                mInstaller.dexopt(path, Process.SYSTEM_UID, true, dexCodeInstructionSet);
                                didDexOptLibraryOrTool = true;
                            } else if (dexoptRequired == DexFile.PATCHOAT_NEEDED) {
                                mInstaller.patchoat(path, Process.SYSTEM_UID, true, dexCodeInstructionSet);
                                didDexOptLibraryOrTool = true;
                            }
                        } catch (FileNotFoundException e) {
                            Slog.w(TAG, "Jar not found: " + path);