aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test
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/test
parent764bf45c33ea1b4fed001e1abee5b111ac7431f2 (diff)
Remove unused 'followSymlinks' parameter to FileSystem#getxattr. It is always true in practice.
-- MOS_MIGRATED_REVID=103221081
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/com/google/devtools/build/lib/vfs/UnionFileSystemTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/vfs/UnionFileSystemTest.java b/src/test/java/com/google/devtools/build/lib/vfs/UnionFileSystemTest.java
index 396a9f8441..e9b54ac570 100644
--- a/src/test/java/com/google/devtools/build/lib/vfs/UnionFileSystemTest.java
+++ b/src/test/java/com/google/devtools/build/lib/vfs/UnionFileSystemTest.java
@@ -322,7 +322,7 @@ public class UnionFileSystemTest extends SymlinkAwareFileSystemTest {
}
@Override
- protected byte[] getxattr(Path path, String name, boolean followSymlinks) {
+ protected byte[] getxattr(Path path, String name) {
assertSame(this, path.getFileSystem());
return (name.equals(XATTR_KEY)) ? XATTR_VAL.getBytes(UTF_8) : null;
}