aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/vfs/Path.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/vfs/Path.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/vfs/Path.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/vfs/Path.java b/src/main/java/com/google/devtools/build/lib/vfs/Path.java
index 6fe6118b9a..1d3947dcdc 100644
--- a/src/main/java/com/google/devtools/build/lib/vfs/Path.java
+++ b/src/main/java/com/google/devtools/build/lib/vfs/Path.java
@@ -78,11 +78,6 @@ public class Path implements Comparable<Path>, Serializable, SkylarkPrintable {
/**
* Makes the proper invocation of {@link FileSystem#getCachedChildPathInternal}, doing
* filesystem-specific logic if necessary.
- *
- * <p>On Unix filesystems this method merely calls through to {@code
- * FileSystem.getCachedChildPathInternal(parent, child)}, but on Windows this can be used to
- * handle the translatation of absolute Unix paths to absolute Windows paths, e.g. "/c" to "C:/"
- * or "/usr" to "C:/tools/msys64/usr".
*/
Path getCachedChildPathInternal(Path path, String childName);
}