Skip to content

Commit 99eaf9d

Browse files
committed
Add missing @OverRide
1 parent a40650c commit 99eaf9d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/test/java/org/apache/commons/collections4/iterators/ListIteratorWrapperTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public class ListIteratorWrapperTest<E> extends AbstractIteratorTest<E> {
4343

4444
protected List<E> list1;
4545

46+
@Override
4647
public ResettableListIterator<E> makeEmptyIterator() {
4748
final ArrayList<E> list = new ArrayList<>();
4849
return new ListIteratorWrapper<>(list.iterator());

src/test/java/org/apache/commons/collections4/iterators/UnmodifiableMapIteratorTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
*/
3939
public class UnmodifiableMapIteratorTest<K, V> extends AbstractMapIteratorTest<K, V> {
4040

41+
@Override
4142
@SuppressWarnings("unchecked")
4243
public Map<K, V> getConfirmedMap() {
4344
final Map<K, V> testMap = new HashMap<>();

0 commit comments

Comments
 (0)