Skip to content

Commit

Permalink
[WFCORE-6661] Fix BootstrapListener.java after resolving conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
yersan authored Jun 20, 2024
1 parent 1acec9d commit 6b05c02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private void createStartupMarker(String result, long startTime) {
Files.deleteIfExists(file.toPath());
if (file.createNewFile()) {
try (BufferedWriter writer = Files.newBufferedWriter(file.toPath(), StandardCharsets.UTF_8, StandardOpenOption.WRITE)) {
writer.append(result).append(":").append(startTime);
writer.append(result).append(":").append(String.valueOf(startTime));
writer.flush();
} catch (IOException e) {
// ignore
Expand Down

0 comments on commit 6b05c02

Please sign in to comment.