Skip to content

Commit

Permalink
settings.gradle: rename a local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 19, 2024
1 parent 863917e commit 6801193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ dependencyResolutionManagement {
*/
def subDirs = rootDir.listFiles(
new FileFilter() {
boolean accept(File sub) {
return sub.isDirectory() && new File(sub, 'build.gradle').isFile()
boolean accept(File file) {
return file.isDirectory() && new File(file, 'build.gradle').isFile()
}
}
)
Expand Down

0 comments on commit 6801193

Please sign in to comment.