Skip to content

Commit

Permalink
Explicit lambda argument types
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Oct 9, 2024
1 parent de11487 commit 6ed2f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xjc/src/main/java/org/openjax/jaxb/xjc/XJCompiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ else if (line.startsWith("[WARNING] "))
}

if (command.getSuppressWarnings()) {
Files.walk(command.getDestDir().toPath()).filter(p -> p.getFileName().toString().endsWith(".java")).map(Path::toFile).forEach(Throwing.rethrow(XJCompiler::insertSuppressWarnings));
Files.walk(command.getDestDir().toPath()).filter((final Path p) -> p.getFileName().toString().endsWith(".java")).map(Path::toFile).forEach(Throwing.rethrow(XJCompiler::insertSuppressWarnings));
}

for (int i = 0, i$ = tempFiles.size(); i < i$; ++i) // [RA]
Expand Down

0 comments on commit 6ed2f8b

Please sign in to comment.