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

Commit b22e7a2e authored by Calin Juravle's avatar Calin Juravle Committed by android-build-merger
Browse files

Merge "Fix spelling mistake in dumpsys output" into oc-mr1-dev

am: 1198bec9

Change-Id: I21837cdcdc44c8bc8496ed699b3e8420534fd9c4
parents ebff6df0 1198bec9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -436,7 +436,7 @@ public class PackageDexOptimizer {
            }

            if (useInfo.isUsedByOtherApps(path)) {
                pw.println("used be other apps: " + useInfo.getLoadingPackages(path));
                pw.println("used by other apps: " + useInfo.getLoadingPackages(path));
            }

            Map<String, PackageDexUsage.DexUseInfo> dexUseInfoMap = useInfo.getDexUseInfoMap();
@@ -452,7 +452,7 @@ public class PackageDexOptimizer {
                    // TODO(calin): get the status of the oat file (needs installd call)
                    pw.println("class loader context: " + dexUseInfo.getClassLoaderContext());
                    if (dexUseInfo.isUsedByOtherApps()) {
                        pw.println("used be other apps: " + dexUseInfo.getLoadingPackages());
                        pw.println("used by other apps: " + dexUseInfo.getLoadingPackages());
                    }
                    pw.decreaseIndent();
                }