Skip to content

Commit

Permalink
Fixed wrong constant name.
Browse files Browse the repository at this point in the history
  • Loading branch information
TwoOfTwelve committed May 8, 2024
1 parent ed910f1 commit e0ed4cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main/java/de/jplag/cli/CLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ private String getOffsetFileName(int offset) {
private String getWritableFileName() throws CliException {
int retryAttempt = 0;
while (!this.inputHandler.getCliOptions().advanced.overwrite && new File(getOffsetFileName(retryAttempt)).exists()
&& retryAttempt < NAME_COLLISION_TRIES) {
&& retryAttempt < NAME_COLLISION_ATTEMPTS) {
retryAttempt++;
}

Expand Down

0 comments on commit e0ed4cc

Please sign in to comment.