Skip to content

Commit 7597c75

Browse files
committed
formatting
1 parent 5b4f4a6 commit 7597c75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

java/src/com/google/idea/blaze/java/fastbuild/FastBuildChangedFilesService.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,8 @@ private ImmutableSet<File> getSourceFilesRecursively(
334334
return ImmutableSet.copyOf(sourceFiles);
335335
}
336336

337-
private static void addBuildFile(Set<File> sourceFiles ,String workSpaceRootPath, String buildFilePath) {
337+
private static void addBuildFile(Set<File> sourceFiles, String workSpaceRootPath,
338+
String buildFilePath) {
338339
File buildFile = new File(workSpaceRootPath, buildFilePath);
339340
if (buildFile.exists()) {
340341
sourceFiles.add(buildFile);

0 commit comments

Comments
 (0)