aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/android/java/com/google/devtools/build/android/Aapt2ResourcePackagingAction.java
diff options
context:
space:
mode:
authorGravatar cushon <cushon@google.com>2018-04-27 01:25:50 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-04-27 01:27:08 -0700
commit8c6b7abac3072314a5707cfdf8a942cf050a2ce7 (patch)
treeedb50541f6a1b44c8588e761e40e86d8756e7363 /src/tools/android/java/com/google/devtools/build/android/Aapt2ResourcePackagingAction.java
parent5a9cf986c76667c7d67ea65f28f274c3df41feb3 (diff)
Normalize parameter name comments
PiperOrigin-RevId: 194512971
Diffstat (limited to 'src/tools/android/java/com/google/devtools/build/android/Aapt2ResourcePackagingAction.java')
-rw-r--r--src/tools/android/java/com/google/devtools/build/android/Aapt2ResourcePackagingAction.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tools/android/java/com/google/devtools/build/android/Aapt2ResourcePackagingAction.java b/src/tools/android/java/com/google/devtools/build/android/Aapt2ResourcePackagingAction.java
index 3ec965067b..025533ee6a 100644
--- a/src/tools/android/java/com/google/devtools/build/android/Aapt2ResourcePackagingAction.java
+++ b/src/tools/android/java/com/google/devtools/build/android/Aapt2ResourcePackagingAction.java
@@ -104,7 +104,7 @@ public class Aapt2ResourcePackagingAction {
null /* cruncher. Aapt2 automatically chooses to crunch or not. */,
options.packageType,
options.symbolsOut,
- null /* rclassWriter */,
+ /* rclassWriter= */ null,
dataDeserializer,
options.throwOnResourceConflict,
executorService)
@@ -185,13 +185,13 @@ public class Aapt2ResourcePackagingAction {
profiler.recordEndOf("link");
if (options.resourcesOutput != null) {
profiler.startTask("package");
- // The compiled resources and the merged resources should be the same.
- // TODO(corysmith): Decompile or otherwise provide the exact resources in the apk.
- ResourcesZip.fromApk(
- mergedAndroidData.getResourceDir(),
- packagedResources.getApk(),
- packagedResources.getResourceIds())
- .writeTo(options.resourcesOutput, false /* compress */);
+ // The compiled resources and the merged resources should be the same.
+ // TODO(corysmith): Decompile or otherwise provide the exact resources in the apk.
+ ResourcesZip.fromApk(
+ mergedAndroidData.getResourceDir(),
+ packagedResources.getApk(),
+ packagedResources.getResourceIds())
+ .writeTo(options.resourcesOutput, /* compress= */ false);
profiler.recordEndOf("package");
}
}