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

This commit is contained in:
TreeHugger Robot
2017-09-27 01:14:35 +00:00
committed by Android (Google) Code Review

View File

@@ -425,7 +425,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();
@@ -441,7 +441,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();
}