Skip to content

Commit

Permalink
Camel case parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 27, 2023
1 parent 2b6c2eb commit 2226b56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public long getCompressedCount() {
}

@Override
public synchronized void mark(final int readlimit) {
decIS.mark(readlimit);
public synchronized void mark(final int readLimit) {
decIS.mark(readLimit);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public long getCompressedCount() {
}

@Override
public synchronized void mark(final int readlimit) {
decIS.mark(readlimit);
public synchronized void mark(final int readLimit) {
decIS.mark(readLimit);
}

@Override
Expand Down

0 comments on commit 2226b56

Please sign in to comment.