Skip to content

Commit

Permalink
fixed typo on status message
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerperyea committed Oct 4, 2021
1 parent 68f6882 commit a8e8039
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private static class TaskProgress{
private long currentCount;

public synchronized void increment(){
listener.message("Indexed:" + (++currentCount) + "of " + totalCount);
listener.message("Indexed:" + (++currentCount) + " of " + totalCount);
}
}
@Async
Expand Down

0 comments on commit a8e8039

Please sign in to comment.