diff --git a/java/src/com/google/idea/blaze/java/fastbuild/FastBuildChangedFilesService.java b/java/src/com/google/idea/blaze/java/fastbuild/FastBuildChangedFilesService.java index 35823e25572..4700ac0d0dc 100644 --- a/java/src/com/google/idea/blaze/java/fastbuild/FastBuildChangedFilesService.java +++ b/java/src/com/google/idea/blaze/java/fastbuild/FastBuildChangedFilesService.java @@ -334,7 +334,8 @@ private ImmutableSet getSourceFilesRecursively( return ImmutableSet.copyOf(sourceFiles); } - private static void addBuildFile(Set sourceFiles ,String workSpaceRootPath, String buildFilePath) { + private static void addBuildFile(Set sourceFiles, String workSpaceRootPath, + String buildFilePath) { File buildFile = new File(workSpaceRootPath, buildFilePath); if (buildFile.exists()) { sourceFiles.add(buildFile);