commit | 07dba941e21619830adcbcae10c5942cf3343f26 | [log] [tgz] |
---|---|---|
author | Ulf Adams <ulfjack@google.com> | Thu Mar 05 14:47:37 2015 +0000 |
committer | Han-Wen Nienhuys <hanwen@google.com> | Thu Mar 05 18:31:47 2015 +0000 |
tree | c0e7b1250bf547b20398a0c3a437864b7b915383 | |
parent | a34d5071784ff51f68714b61f4100c35f1e4db3a [diff] [blame] |
Some cleanup changes. -- MOS_MIGRATED_REVID=87821306
diff --git a/src/main/java/com/google/devtools/build/lib/vfs/UnionFileSystem.java b/src/main/java/com/google/devtools/build/lib/vfs/UnionFileSystem.java index b349b53..d2d9c00 100644 --- a/src/main/java/com/google/devtools/build/lib/vfs/UnionFileSystem.java +++ b/src/main/java/com/google/devtools/build/lib/vfs/UnionFileSystem.java
@@ -88,7 +88,7 @@ "please use the rootFileSystem argument instead."); this.readOnly = readOnly; - this.pathDelegate = new StringTrie<FileSystem>(); + this.pathDelegate = new StringTrie<>(); for (Map.Entry<PathFragment, FileSystem> prefix : prefixMapping.entrySet()) { FileSystem delegate = prefix.getValue();