예제 #1
0
 private ImmutableBiMap<Path, Path> getAllPathsWork(Path workingDir) {
   ImmutableBiMap.Builder<Path, Path> builder = ImmutableBiMap.builder();
   builder.put(workingDir, compilationDirectory);
   builder.putAll(other);
   return builder.build();
 }