Call to super is redundant

This commit is contained in:
Gary Gregory 2022-11-06 10:54:50 -05:00
parent 62b1cc6354
commit 4033393aaf
3 changed files with 0 additions and 3 deletions

View File

@ -23,7 +23,6 @@ package org.apache.commons.collections4.iterators;
public class ArrayListIterator2Test<E> extends ArrayIterator2Test<E> { public class ArrayListIterator2Test<E> extends ArrayIterator2Test<E> {
public ArrayListIterator2Test() { public ArrayListIterator2Test() {
super();
} }
@Override @Override

View File

@ -30,7 +30,6 @@ import static org.junit.jupiter.api.Assertions.assertThrows;
public class ArrayListIteratorTest<E> extends ArrayIteratorTest<E> { public class ArrayListIteratorTest<E> extends ArrayIteratorTest<E> {
public ArrayListIteratorTest() { public ArrayListIteratorTest() {
super();
} }
@Override @Override

View File

@ -30,7 +30,6 @@ import static org.junit.jupiter.api.Assertions.assertThrows;
public class ObjectArrayListIteratorTest<E> extends ObjectArrayIteratorTest<E> { public class ObjectArrayListIteratorTest<E> extends ObjectArrayIteratorTest<E> {
public ObjectArrayListIteratorTest() { public ObjectArrayListIteratorTest() {
super();
} }
@Override @Override