aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/analysis/skylark
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/main/java/com/google/devtools/build/lib/analysis/skylark
parent5a9cf986c76667c7d67ea65f28f274c3df41feb3 (diff)
Normalize parameter name comments
PiperOrigin-RevId: 194512971
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/analysis/skylark')
-rw-r--r--src/main/java/com/google/devtools/build/lib/analysis/skylark/SkylarkActionFactory.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/skylark/SkylarkActionFactory.java b/src/main/java/com/google/devtools/build/lib/analysis/skylark/SkylarkActionFactory.java
index 0985afb108..731ccf1cbe 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/skylark/SkylarkActionFactory.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/skylark/SkylarkActionFactory.java
@@ -1134,16 +1134,16 @@ public class SkylarkActionFactory implements SkylarkValue {
}
addVectorArg(
value,
- null /* argName */,
+ /* argName= */ null,
mapFn != Runtime.NONE ? (BaseFunction) mapFn : null,
- null /* mapEach */,
+ /* mapEach= */ null,
format != Runtime.NONE ? (String) format : null,
beforeEach != Runtime.NONE ? (String) beforeEach : null,
joinWith != Runtime.NONE ? (String) joinWith : null,
- null /* formatJoined */,
- false /* omitIfEmpty */,
- false /* uniquify */,
- null /* terminateWith */,
+ /* formatJoined= */ null,
+ /* omitIfEmpty= */ false,
+ /* uniquify= */ false,
+ /* terminateWith= */ null,
loc);
} else {
@@ -1337,12 +1337,12 @@ public class SkylarkActionFactory implements SkylarkValue {
addVectorArg(
values,
argName,
- null /* mapAll */,
+ /* mapAll= */ null,
mapEach != Runtime.NONE ? (BaseFunction) mapEach : null,
formatEach != Runtime.NONE ? (String) formatEach : null,
beforeEach != Runtime.NONE ? (String) beforeEach : null,
- null /* joinWith */,
- null /* formatJoined */,
+ /* joinWith= */ null,
+ /* formatJoined= */ null,
omitIfEmpty,
uniquify,
terminateWith != Runtime.NONE ? (String) terminateWith : null,
@@ -1481,15 +1481,15 @@ public class SkylarkActionFactory implements SkylarkValue {
addVectorArg(
values,
argName,
- null /* mapAll */,
+ /* mapAll= */ null,
mapEach != Runtime.NONE ? (BaseFunction) mapEach : null,
formatEach != Runtime.NONE ? (String) formatEach : null,
- null /* beforeEach */,
+ /* beforeEach= */ null,
joinWith,
formatJoined != Runtime.NONE ? (String) formatJoined : null,
omitIfEmpty,
uniquify,
- null /* terminateWith */,
+ /* terminateWith= */ null,
loc);
return Runtime.NONE;
}