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

am: 1198bec925

Change-Id: I21837cdcdc44c8bc8496ed699b3e8420534fd9c4
This commit is contained in:
Calin Juravle
2017-09-27 01:22:06 +00:00
committed by android-build-merger

View File

@@ -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();
}