Skip to content

Commit 6d30dc6

Browse files
committed
Fix doclint errors in IsIterableContainingInRelativeOrder
1 parent fb8cf22 commit 6d30dc6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

hamcrest-library/src/main/java/org/hamcrest/collection/IsIterableContainingInRelativeOrder.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ public boolean isFinished() {
7272
* Creates a matcher for {@link Iterable}s that matches when a single pass over the
7373
* examined {@link Iterable} yields a series of items, that contains items logically equal to the
7474
* corresponding item in the specified items, in the same relative order
75-
* <p/>
7675
* For example:
7776
* <pre>assertThat(Arrays.asList("a", "b", "c", "d", "e"), containsInRelativeOrder("b", "d"))</pre>
7877
*
@@ -93,7 +92,6 @@ public static <E> Matcher<Iterable<? extends E>> containsInRelativeOrder(E... it
9392
* Creates a matcher for {@link Iterable}s that matches when a single pass over the
9493
* examined {@link Iterable} yields a series of items, that each satisfying the corresponding
9594
* matcher in the specified matchers, in the same relative order.
96-
* <p/>
9795
* For example:
9896
* <pre>assertThat(Arrays.asList("a", "b", "c", "d", "e"), containsInRelativeOrder(equalTo("b"), equalTo("d")))</pre>
9997
*
@@ -109,7 +107,6 @@ public static <E> Matcher<Iterable<? extends E>> containsInRelativeOrder(Matcher
109107
* Creates a matcher for {@link Iterable}s that matches when a single pass over the
110108
* examined {@link Iterable} yields a series of items, that contains items satisfying the corresponding
111109
* matcher in the specified list of matchers, in the same relative order.
112-
* <p/>
113110
* For example:
114111
* <pre>assertThat(Arrays.asList("a", "b", "c", "d", "e"), contains(Arrays.asList(equalTo("b"), equalTo("d"))))</pre>
115112
*

0 commit comments

Comments
 (0)