Skip to content

Commit

Permalink
Add missing @OverRide
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 11, 2024
1 parent a40650c commit 99eaf9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public class ListIteratorWrapperTest<E> extends AbstractIteratorTest<E> {

protected List<E> list1;

@Override
public ResettableListIterator<E> makeEmptyIterator() {
final ArrayList<E> list = new ArrayList<>();
return new ListIteratorWrapper<>(list.iterator());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
*/
public class UnmodifiableMapIteratorTest<K, V> extends AbstractMapIteratorTest<K, V> {

@Override
@SuppressWarnings("unchecked")
public Map<K, V> getConfirmedMap() {
final Map<K, V> testMap = new HashMap<>();
Expand Down

0 comments on commit 99eaf9d

Please sign in to comment.