Skip to content

Commit

Permalink
fix: checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Nov 5, 2023
1 parent 5060a93 commit b504f4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ private boolean processApi() throws UpdateException {
ctr = 0;
for (Future<NvdApiProcessor> f : submitted) {
try {
NvdApiProcessor proc = f.get();
final NvdApiProcessor proc = f.get();
ctr += 1;
final double percent = (double) ctr / max * 100;
LOGGER.info(String.format("Completed processing batch %d/%d (%.0f%%) in %,dms", ctr, max, percent, proc.getDurationMillis()));
Expand Down

0 comments on commit b504f4b

Please sign in to comment.