Call to super is redundant
This commit is contained in:
parent
62b1cc6354
commit
4033393aaf
|
@ -23,7 +23,6 @@ package org.apache.commons.collections4.iterators;
|
|||
public class ArrayListIterator2Test<E> extends ArrayIterator2Test<E> {
|
||||
|
||||
public ArrayListIterator2Test() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -30,7 +30,6 @@ import static org.junit.jupiter.api.Assertions.assertThrows;
|
|||
public class ArrayListIteratorTest<E> extends ArrayIteratorTest<E> {
|
||||
|
||||
public ArrayListIteratorTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -30,7 +30,6 @@ import static org.junit.jupiter.api.Assertions.assertThrows;
|
|||
public class ObjectArrayListIteratorTest<E> extends ObjectArrayIteratorTest<E> {
|
||||
|
||||
public ObjectArrayListIteratorTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue