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 class ArrayListIterator2Test<E> extends ArrayIterator2Test<E> {
|
||||||
|
|
||||||
public ArrayListIterator2Test() {
|
public ArrayListIterator2Test() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue