File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
hamcrest-library/src/main/java/org/hamcrest Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 1
1
package org .hamcrest ;
2
2
3
3
import org .hamcrest .collection .IsCollectionContaining ;
4
- import org .hamcrest .collection .IsIterableWithSize ;
5
4
6
5
import java .util .Collection ;
7
6
import java .util .List ;
@@ -1020,7 +1019,7 @@ public static <E> Matcher<Iterable<? extends E>> containsInRelativeOrder(List<Ma
1020
1019
* a matcher for the number of items that should be yielded by an examined {@link Iterable}
1021
1020
*/
1022
1021
public static <E > Matcher <Iterable <E >> iterableWithSize (Matcher <? super Integer > sizeMatcher ) {
1023
- return IsIterableWithSize .<E >iterableWithSize (sizeMatcher );
1022
+ return MatchingCollections .<E >iterableWithSize (sizeMatcher );
1024
1023
}
1025
1024
1026
1025
/**
You can’t perform that action at this time.
0 commit comments