Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
yejunhao committed Apr 11, 2024
1 parent cf9849f commit 7cf36bf
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,9 @@ public Path newChangelogPath() {
return newPath(CHANGELOG_FILE_PREFIX);
}

private Path newPath(String prefix, String subffix) {
String name = prefix + uuid + "-" + pathCount.getAndIncrement() + "." + subffix;
return new Path(parent, name);
}

private Path newPath(String prefix) {
return newPath(prefix, formatIdentifier);
String name = prefix + uuid + "-" + pathCount.getAndIncrement() + "." + formatIdentifier;
return new Path(parent, name);
}

public Path toPath(String fileName) {
Expand Down

0 comments on commit 7cf36bf

Please sign in to comment.