mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 06:23:08 +08:00
style: enable FinalClass
in checkstyle (#5154)
This commit is contained in:

committed by
GitHub

parent
52f15b2b08
commit
bbe4a025df
@ -153,7 +153,7 @@ public class DynamicArray<E> implements Iterable<E> {
|
||||
return new DynamicArrayIterator();
|
||||
}
|
||||
|
||||
private class DynamicArrayIterator implements Iterator<E> {
|
||||
private final class DynamicArrayIterator implements Iterator<E> {
|
||||
|
||||
private int cursor;
|
||||
|
||||
|
Reference in New Issue
Block a user