aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com
diff options
context:
space:
mode:
authorGravatar tomlu <tomlu@google.com>2017-12-08 14:19:42 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2017-12-08 14:23:59 -0800
commitc2f6ae8f61b15c621323b62665b324ad21d59f32 (patch)
tree2496ec0d1f59cea23b7965a0547169e30bd3e14b /src/test/java/com
parentf35c8a0dfb74f7b0d7b292d5a23eb7ce10723954 (diff)
Thread filesystem through codebase.
RELNOTES: None PiperOrigin-RevId: 178426166
Diffstat (limited to 'src/test/java/com')
-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 69305fa757..1e877a5255 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
@@ -278,7 +278,7 @@ public class UnionFileSystemTest extends SymlinkAwareFileSystemTest {
}
@Override
- protected byte[] getxattr(Path path, String name) {
+ public byte[] getxattr(Path path, String name) {
assertThat(path.getFileSystem()).isSameAs(this);
return (name.equals(XATTR_KEY)) ? XATTR_VAL.getBytes(UTF_8) : null;
}