Skip to content

Commit

Permalink
checkstyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tejaskriya committed Nov 18, 2024
1 parent 1843e92 commit 46e754d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,12 +231,12 @@ public void resetLastIterationCounts() {
this.failureCountInLastIteration.incr(-1L * this.failureCountInLastIteration.value());
}

public void incrSuccessCountInLastIteration(long successCountInLastIteration) {
this.successCountInLastIteration.incr(successCountInLastIteration);
public void incrSuccessCountInLastIteration(long delta) {
this.successCountInLastIteration.incr(delta);
}

public void incrSuccessBytesInLastIteration(long successBytesInLastIteration) {
this.successBytesInLastIteration.incr(successBytesInLastIteration);
public void incrSuccessBytesInLastIteration(long delta) {
this.successBytesInLastIteration.incr(delta);
}

public void incrFailureCountInLastIteration() {
Expand Down

0 comments on commit 46e754d

Please sign in to comment.