--- old/application/tests/org.openjdk.jmc.rjmx.test/src/test/java/org/openjdk/jmc/rjmx/test/subscription/internal/DummyConnectionHandle.java 2019-02-27 20:12:44.000000000 +0100 +++ new/application/tests/org.openjdk.jmc.rjmx.test/src/test/java/org/openjdk/jmc/rjmx/test/subscription/internal/DummyConnectionHandle.java 2019-02-27 20:12:44.000000000 +0100 @@ -60,8 +60,8 @@ * we would like to check this at compile time, but there was no way to do that yet. JSR * 308 and the Checker Framework should change that.) */ - throw new IllegalArgumentException("Will not be able to create dummy implementations of " //$NON-NLS-1$ - + serviceInterface.getName() + " since the service is not an interface"); //$NON-NLS-1$ + throw new IllegalArgumentException("Will not be able to create dummy implementations of " + + serviceInterface.getName() + " since the service is not an interface"); } T service = getServiceOrNull(serviceInterface); if (service == null) { @@ -119,7 +119,7 @@ @Override public String getDescription() { - return "Dummy"; //$NON-NLS-1$ + return "Dummy"; } @Override