aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/vfs/FileSystem.java
diff options
context:
space:
mode:
authorGravatar Nathan Harmata <nharmata@google.com>2015-09-16 20:03:08 +0000
committerGravatar Florian Weikert <fwe@google.com>2015-09-16 20:06:18 +0000
commite1f187a7bcaf13d03ee9570ca2874927c6c3d73f (patch)
treeb160bcc13fe4492f52285f69fe6d7c2a6a7492b7 /src/main/java/com/google/devtools/build/lib/vfs/FileSystem.java
parent764bf45c33ea1b4fed001e1abee5b111ac7431f2 (diff)
Remove unused 'followSymlinks' parameter to FileSystem#getxattr. It is always true in practice.
-- MOS_MIGRATED_REVID=103221081
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/vfs/FileSystem.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/vfs/FileSystem.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/vfs/FileSystem.java b/src/main/java/com/google/devtools/build/lib/vfs/FileSystem.java
index 700434532f..fc5a9e81e3 100644
--- a/src/main/java/com/google/devtools/build/lib/vfs/FileSystem.java
+++ b/src/main/java/com/google/devtools/build/lib/vfs/FileSystem.java
@@ -206,7 +206,7 @@ public abstract class FileSystem {
/**
* Returns value of the given extended attribute name or null if attribute
- * does not exist or file system does not support extended attributes.
+ * does not exist or file system does not support extended attributes. Follows symlinks.
* <p>Default implementation assumes that file system does not support
* extended attributes and always returns null. Specific file system
* implementations should override this method if they do provide support
@@ -219,7 +219,7 @@ public abstract class FileSystem {
* system does not support extended attributes at all.
* @throws IOException if the call failed for any other reason.
*/
- protected byte[] getxattr(Path path, String name, boolean followSymlinks) throws IOException {
+ protected byte[] getxattr(Path path, String name) throws IOException {
return null;
}