Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Dec 6, 2024
1 parent 3382073 commit ed112e5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ public void logFailedBuildLog(Log logger, boolean ignoreFailures) throws MojoFai
buildLogMessage.append(System.lineSeparator());
buildLogMessage.append("*** begin build.log for: " + buildJob.getProject() + " ***");
buildLogMessage.append(System.lineSeparator());
try (Reader buildLogReader = Files.newBufferedReader(buildLogFile.toPath(), StandardCharsets.UTF_8)) {
try (Reader buildLogReader =
Files.newBufferedReader(buildLogFile.toPath(), StandardCharsets.UTF_8)) {
buildLogMessage.append(IOUtil.toString(buildLogReader));
}
buildLogMessage.append("*** end build.log for: " + buildJob.getProject() + " ***");
Expand Down

0 comments on commit ed112e5

Please sign in to comment.