From 7597c75f4c756f8790cfd615e8f65ff5e9de56cb Mon Sep 17 00:00:00 2001 From: mildag Date: Mon, 30 Jan 2023 11:52:31 +0200 Subject: [PATCH] formatting --- .../blaze/java/fastbuild/FastBuildChangedFilesService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);