Skip to content

Commit

Permalink
fix: removed unnecessary .toString() call from DockerFileBuilder (#3651)
Browse files Browse the repository at this point in the history
Signed-off-by: Laurentinus Setiawan <rian.heldy.japan@gmail.com>
  • Loading branch information
ryu-wi authored Feb 3, 2025
1 parent 4dc34e0 commit 788ec6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ private void addCopy(StringBuilder b) {
}

private String createTempDir() {
return "/tmp/" + UUID.randomUUID().toString();
return "/tmp/" + UUID.randomUUID();
}

private void addCopyEntries(StringBuilder b, String topLevelDir) {
Expand Down

0 comments on commit 788ec6a

Please sign in to comment.