mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 06:23:08 +08:00
style: enable RedundantModifier
in checkstyle (#5140)
This commit is contained in:
@ -43,7 +43,7 @@ public class CircularBuffer<Item> {
|
||||
private int pointer;
|
||||
private final int max;
|
||||
|
||||
public CircularPointer(int pointer, int max) {
|
||||
CircularPointer(int pointer, int max) {
|
||||
this.pointer = pointer;
|
||||
this.max = max;
|
||||
}
|
||||
|
Reference in New Issue
Block a user