Merge "PackageDexOptimizer: fix typo in log message."

This commit is contained in:
Treehugger Robot
2017-01-18 03:42:46 +00:00
committed by Gerrit Code Review

View File

@@ -236,7 +236,7 @@ class PackageDexOptimizer {
Log.i(TAG, "Running dexopt on: " + path + " pkg=" Log.i(TAG, "Running dexopt on: " + path + " pkg="
+ pkg.applicationInfo.packageName + " isa=" + dexCodeInstructionSet + pkg.applicationInfo.packageName + " isa=" + dexCodeInstructionSet
+ " vmSafeMode=" + vmSafeMode + " debuggable=" + debuggable + " vmSafeMode=" + vmSafeMode + " debuggable=" + debuggable
+ " target-filter=" + targetCompilerFilter + " oatDir = " + oatDir + " target-filter=" + targetCompilerFilter + " oatDir=" + oatDir
+ " sharedLibraries=" + sharedLibrariesPath); + " sharedLibraries=" + sharedLibrariesPath);
// Profile guide compiled oat files should not be public. // Profile guide compiled oat files should not be public.
final boolean isPublic = !pkg.isForwardLocked() && !isProfileGuidedFilter; final boolean isPublic = !pkg.isForwardLocked() && !isProfileGuidedFilter;