Skip to content

Commit

Permalink
Make matchesInAnyOrder with TypeMatchMode public
Browse files Browse the repository at this point in the history
Same as matches with and without TypeMatchMode are both public, also matchesInAnyOrder with and without TypeMatchMode are both public.
  • Loading branch information
JakubJablonski2-TomTom authored Aug 22, 2024
1 parent d6dd7ec commit 78269bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ public Matcher<ResultSet> matchesInAnyOrder() {
* @param typeMatchMode mode for type matching
* @return matcher the new matcher
*/
private Matcher<ResultSet> matchesInAnyOrder(final TypeMatchMode typeMatchMode) {
public Matcher<ResultSet> matchesInAnyOrder(final TypeMatchMode typeMatchMode) {
this.requireSameOrder = false;
this.typeMatchMode = typeMatchMode;
return new ResultSetStructureMatcher(this);
Expand Down

0 comments on commit 78269bc

Please sign in to comment.