From 8b3ba50246fed6ff13d70299fb039cc66be465c4 Mon Sep 17 00:00:00 2001 From: tomlu Date: Thu, 14 Dec 2017 12:37:58 -0500 Subject: Move msys path support into DependencySet, removing it from the general Path system. This is the only place that should actually need it. PiperOrigin-RevId: 179054861 --- src/main/java/com/google/devtools/build/lib/vfs/Path.java | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/main/java/com/google/devtools/build/lib/vfs') 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, Serializable, SkylarkPrintable { /** * Makes the proper invocation of {@link FileSystem#getCachedChildPathInternal}, doing * filesystem-specific logic if necessary. - * - *

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); } -- cgit v1.2.3