style: enable FinalClass in checkstyle (#5154)

This commit is contained in:
Godwill Christopher
2024-05-11 00:50:05 -06:00
committed by GitHub
parent 52f15b2b08
commit bbe4a025df
12 changed files with 12 additions and 12 deletions

View File

@ -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;