Merge "PackageDexOptimizer: fix typo in log message."

am: 228123dd53

Change-Id: I9bc4e9f9ac04a0666001b50dab4617986cf5da14
This commit is contained in:
Jorge Lucangeli Obes
2017-01-18 03:49:41 +00:00
committed by android-build-merger

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;