mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-26 05:59:22 +08:00
style: enable RedundantModifier
in checkstyle (#5140)
This commit is contained in:
@ -80,7 +80,7 @@ public class Bag<Element> implements Iterable<Element> {
|
||||
|
||||
private Node<Element> currentElement;
|
||||
|
||||
public ListIterator(Node<Element> firstElement) {
|
||||
ListIterator(Node<Element> firstElement) {
|
||||
currentElement = firstElement;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user