aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/vfs/JavaIoFileSystem.java
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-01-29 11:56:29 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2016-01-29 14:42:40 +0000
commit58dbb7f81a994629d8da08fc383dcca5aa3a4b0a (patch)
treea81526f8dcaa3877f03811a23ced666334ad5628 /src/main/java/com/google/devtools/build/lib/vfs/JavaIoFileSystem.java
parent1ef62e79a4ad920cb1339abc8cf286223f8f3f54 (diff)
Merge Dmitry's jury-rigged WindowsFileSystem to decrease the number of changes between his branch and HEAD.
This code will need some JNI to make it work properly, but for now, it will do. -- MOS_MIGRATED_REVID=113349143
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/vfs/JavaIoFileSystem.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/vfs/JavaIoFileSystem.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/vfs/JavaIoFileSystem.java b/src/main/java/com/google/devtools/build/lib/vfs/JavaIoFileSystem.java
index b03ceccbd3..f095097801 100644
--- a/src/main/java/com/google/devtools/build/lib/vfs/JavaIoFileSystem.java
+++ b/src/main/java/com/google/devtools/build/lib/vfs/JavaIoFileSystem.java
@@ -337,7 +337,7 @@ public class JavaIoFileSystem extends AbstractFileSystemWithCustomStat {
}
}
- private boolean fileIsSymbolicLink(File file) {
+ protected boolean fileIsSymbolicLink(File file) {
return Files.isSymbolicLink(file.toPath());
}