Skip to content

Commit 944a628

Browse files
committed
Fix layout
1 parent f82958d commit 944a628

File tree

1 file changed

+2
-2
lines changed
  • hamcrest-core/src/main/java/org/hamcrest/core

1 file changed

+2
-2
lines changed

hamcrest-core/src/main/java/org/hamcrest/core/AllOf.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ public AllOf(Iterable<Matcher<? super T>> matchers) {
2222
public boolean matches(Object o, Description mismatch) {
2323
for (Matcher<? super T> matcher : matchers) {
2424
if (!matcher.matches(o)) {
25-
matcher.describeMismatch(o, mismatch);
26-
return false;
25+
matcher.describeMismatch(o, mismatch);
26+
return false;
2727
}
2828
}
2929
return true;

0 commit comments

Comments
 (0)