Skip to content

Commit b5000d6

Browse files
committed
Fix formatting.
1 parent 1a27d8d commit b5000d6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

openjdk/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,8 +548,9 @@ boolean isExecutableOnPath(executable) {
548548
}
549549
}
550550
for (String folder : System.getenv('PATH').split("" + File.pathSeparatorChar)) {
551-
if (folder != '') { // Ignore any empty PATH elements.
552-
File[] files = file(folder).listFiles(filter)
551+
// Ignore any empty PATH elements.
552+
if (folder != '') {
553+
File[] files = file(folder).listFiles(filter)
553554
if (files != null && files.size() > 0) {
554555
return true
555556
}

0 commit comments

Comments
 (0)