Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mildagle committed Feb 6, 2023
1 parent 5b4f4a6 commit 7597c75
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,8 @@ private ImmutableSet<File> getSourceFilesRecursively(
return ImmutableSet.copyOf(sourceFiles);
}

private static void addBuildFile(Set<File> sourceFiles ,String workSpaceRootPath, String buildFilePath) {
private static void addBuildFile(Set<File> sourceFiles, String workSpaceRootPath,
String buildFilePath) {
File buildFile = new File(workSpaceRootPath, buildFilePath);
if (buildFile.exists()) {
sourceFiles.add(buildFile);
Expand Down

0 comments on commit 7597c75

Please sign in to comment.