Remove meaningless Javadoc

Nothing to inherit
This commit is contained in:
Gary Gregory 2024-07-26 10:14:54 -04:00
parent 9b475c56f5
commit 682e1412b7
5 changed files with 0 additions and 14 deletions

View File

@ -57,9 +57,6 @@ public class PeekingIteratorTest<E> extends AbstractIteratorTest<E> {
return PeekingIterator.peekingIterator(testList.iterator());
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@BeforeEach
protected void setUp() throws Exception {

View File

@ -34,8 +34,6 @@ import org.junit.jupiter.api.Test;
/**
* Test class for PermutationIterator.
*
* @param <E> the type of elements tested by this iterator.
*/
public class PermutationIteratorTest extends AbstractIteratorTest<List<Character>> {

View File

@ -54,9 +54,6 @@ public class PushbackIteratorTest<E> extends AbstractIteratorTest<E> {
return PushbackIterator.pushbackIterator(testList.iterator());
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@BeforeEach
protected void setUp() throws Exception {

View File

@ -55,9 +55,6 @@ public class UnmodifiableIteratorTest<E> extends AbstractIteratorTest<E> {
return UnmodifiableIterator.unmodifiableIterator(testList.iterator());
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@BeforeEach
protected void setUp() throws Exception {

View File

@ -55,9 +55,6 @@ public class UnmodifiableListIteratorTest<E> extends AbstractListIteratorTest<E>
return UnmodifiableListIterator.unmodifiableListIterator(testList.listIterator());
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@BeforeEach
protected void setUp() throws Exception {