Commit 689a2239 authored by Riegel's avatar Riegel
Browse files

Fix: Change method-call to correct implementation

parent 5fd30ccc
......@@ -13,7 +13,7 @@ public class ContainsAnyErrorVisitor extends AbstractCheck {
@Override
public void check(Checkable checkable) {
if (checkable.hasAnyErrorWithoutDependencies()) {
if (checkable.hasAnyError()) {
ThrowUtils.sneakyThrow(new CheckErrorFound());
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment