Fix spelling mistake in dumpsys output

Bug: 65843255
Test: build
Change-Id: Icc748dd14b52641e37b149f51d61a4086e55ed41
This commit is contained in:
Calin Juravle
2017-09-26 13:23:00 -07:00
parent 4dfeb4f0e4
commit 94837e35e3

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