--- old/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyUsageWithEquals.java 2019-03-28 07:36:52.244512851 +0100 +++ new/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyUsageWithEquals.java 2019-03-28 07:36:51.868510338 +0100 @@ -143,7 +143,7 @@ } @Override - protected boolean verify(StructuredGraph graph, PhaseContext context) { + protected void verify(StructuredGraph graph, PhaseContext context) { for (ObjectEqualsNode cn : graph.getNodes().filter(ObjectEqualsNode.class)) { // bail out if we compare an object of type klass with == or != (except null checks) ResolvedJavaMethod method = graph.method(); @@ -156,6 +156,5 @@ " must use .equals() for object equality, not '==' or '!='"); } } - return true; } }