aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/vfs
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/vfs
parent5a9cf986c76667c7d67ea65f28f274c3df41feb3 (diff)
Normalize parameter name comments
PiperOrigin-RevId: 194512971
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/vfs')
-rw-r--r--src/main/java/com/google/devtools/build/lib/vfs/PathFragment.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/vfs/PathFragment.java b/src/main/java/com/google/devtools/build/lib/vfs/PathFragment.java
index fcb857bf20..8c9009fab4 100644
--- a/src/main/java/com/google/devtools/build/lib/vfs/PathFragment.java
+++ b/src/main/java/com/google/devtools/build/lib/vfs/PathFragment.java
@@ -620,7 +620,7 @@ public final class PathFragment
* these are always normalized and will throw uplevel references away.
*/
public static boolean isNormalized(String path) {
- return isNormalizedImpl(path, true /* lookForSameLevelReferences */);
+ return isNormalizedImpl(path, /* lookForSameLevelReferences= */ true);
}
/**
@@ -630,7 +630,7 @@ public final class PathFragment
* these are always normalized and will throw uplevel references away.
*/
public static boolean containsUplevelReferences(String path) {
- return !isNormalizedImpl(path, false /* lookForSameLevelReferences */);
+ return !isNormalizedImpl(path, /* lookForSameLevelReferences= */ false);
}
private enum NormalizedImplState {