Skip to content

Commit

Permalink
fix: make checkstyle happier
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong authored Oct 21, 2023
1 parent 38888a7 commit f025035
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ private boolean processApi() throws UpdateException {
errorCount = 0;
ctr += 1;
if ((ctr % 10) == 0) {
double percent = (double) (ctr * 2000) / max * 100;
final double percent = (double) (ctr * 2000) / max * 100;
LOGGER.info(String.format("Processing %,d/%,d (%.0f%%)", ctr * 2000, max, percent));
}

Expand Down

0 comments on commit f025035

Please sign in to comment.