Skip to content

Commit b76e174

Browse files
committed
Fix javadoc error when using Oracle.
1 parent bf8b3e2 commit b76e174

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

hamcrest/src/main/java/org/hamcrest/collection/IsArrayContainingInAnyOrder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public void describeTo(Description description) {
4545
* examined array satisfies one matcher anywhere in the specified matchers.
4646
* For a positive match, the examined array must be of the same length as the number of
4747
* specified matchers.
48-
* <p/>
48+
* <p>
4949
* N.B. each of the specified matchers will only be used once during a given examination, so be
5050
* careful when specifying matchers that may be satisfied by more than one entry in an examined
5151
* array.
@@ -67,7 +67,7 @@ public static <E> Matcher<E[]> arrayContainingInAnyOrder(Matcher<? super E>... i
6767
* examined array satisfies one matcher anywhere in the specified collection of matchers.
6868
* For a positive match, the examined array must be of the same length as the specified collection
6969
* of matchers.
70-
* <p/>
70+
* <p>
7171
* N.B. each matcher in the specified collection will only be used once during a given
7272
* examination, so be careful when specifying matchers that may be satisfied by more than
7373
* one entry in an examined array.
@@ -89,7 +89,7 @@ public static <E> Matcher<E[]> arrayContainingInAnyOrder(Collection<Matcher<? su
8989
* examined array is logically equal to one item anywhere in the specified items.
9090
* For a positive match, the examined array must be of the same length as the number of
9191
* specified items.
92-
* <p/>
92+
* <p>
9393
* N.B. each of the specified items will only be used once during a given examination, so be
9494
* careful when specifying items that may be equal to more than one entry in an examined
9595
* array.

hamcrest/src/main/java/org/hamcrest/collection/IsArrayContainingInOrder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void describeTo(Description description) {
4242
* Creates a matcher for arrays that matcheswhen each item in the examined array is
4343
* logically equal to the corresponding item in the specified items. For a positive match,
4444
* the examined array must be of the same length as the number of specified items.
45-
* <p/>
45+
* <p>
4646
* For example:
4747
* <pre>assertThat(new String[]{"foo", "bar"}, contains("foo", "bar"))</pre>
4848
*
@@ -63,7 +63,7 @@ public static <E> Matcher<E[]> arrayContaining(E... items) {
6363
* Creates a matcher for arrays that matches when each item in the examined array satisfies the
6464
* corresponding matcher in the specified matchers. For a positive match, the examined array
6565
* must be of the same length as the number of specified matchers.
66-
* <p/>
66+
* <p>
6767
* For example:
6868
* <pre>assertThat(new String[]{"foo", "bar"}, contains(equalTo("foo"), equalTo("bar")))</pre>
6969
*
@@ -80,7 +80,7 @@ public static <E> Matcher<E[]> arrayContaining(Matcher<? super E>... itemMatcher
8080
* Creates a matcher for arrays that matches when each item in the examined array satisfies the
8181
* corresponding matcher in the specified list of matchers. For a positive match, the examined array
8282
* must be of the same length as the specified list of matchers.
83-
* <p/>
83+
* <p>
8484
* For example:
8585
* <pre>assertThat(new String[]{"foo", "bar"}, contains(Arrays.asList(equalTo("foo"), equalTo("bar"))))</pre>
8686
*

0 commit comments

Comments
 (0)