Skip to content

Commit

Permalink
Remove meaningless Javadoc
Browse files Browse the repository at this point in the history
Nothing to inherit
  • Loading branch information
garydgregory committed Jul 26, 2024
1 parent 9b475c5 commit 682e141
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ public PeekingIterator<E> makeObject() {
return PeekingIterator.peekingIterator(testList.iterator());
}

/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@BeforeEach
protected void setUp() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@

/**
* Test class for PermutationIterator.
*
* @param <E> the type of elements tested by this iterator.
*/
public class PermutationIteratorTest extends AbstractIteratorTest<List<Character>> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@ public PushbackIterator<E> makeObject() {
return PushbackIterator.pushbackIterator(testList.iterator());
}

/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@BeforeEach
protected void setUp() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ public Iterator<E> makeObject() {
return UnmodifiableIterator.unmodifiableIterator(testList.iterator());
}

/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@BeforeEach
protected void setUp() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ public ListIterator<E> makeObject() {
return UnmodifiableListIterator.unmodifiableListIterator(testList.listIterator());
}

/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@BeforeEach
protected void setUp() throws Exception {
Expand Down

0 comments on commit 682e141

Please sign in to comment.