--- old/test/hotspot/jtreg/runtime/InvocationTests/invokeinterface/Checker.java 2019-07-01 16:37:54.790251798 -0400 +++ new/test/hotspot/jtreg/runtime/InvocationTests/invokeinterface/Checker.java 2019-07-01 16:37:54.664137743 -0400 @@ -67,15 +67,13 @@ int modifiers = method.getModifiers(); // Check whether obtained method is public and isn't abstract - if ( Modifier.isPublic(modifiers)) - { + if ( Modifier.isPublic(modifiers)) { if (Modifier.isAbstract(modifiers)) { return "java.lang.AbstractMethodError"; } else { - return String.format("%s.%s" - , method.getDeclaringClass().getSimpleName() - , methodName - ); + return String.format("%s.%s", + method.getDeclaringClass().getSimpleName(), + methodName); } } else { // IAE is thrown when located method isn't PUBLIC