--- old/application/tests/org.openjdk.jmc.rjmx.test/src/test/java/org/openjdk/jmc/rjmx/test/synthetic/TestAttribute.java 2019-02-27 20:12:48.000000000 +0100 +++ new/application/tests/org.openjdk.jmc.rjmx.test/src/test/java/org/openjdk/jmc/rjmx/test/synthetic/TestAttribute.java 2019-02-27 20:12:48.000000000 +0100 @@ -40,7 +40,7 @@ * A synthetic test attribute that can be set and read. */ public class TestAttribute extends AbstractSyntheticAttribute { - private String lastValue = "Mission Control <3"; //$NON-NLS-1$ + private String lastValue = "Mission Control <3"; @Override public Object getValue(MBeanServerConnection connection) { @@ -52,7 +52,7 @@ if (value == null || value instanceof String) { lastValue = (String) value; } else { - throw new AssertionError(String.format("The value was not a String! (%s)", value.getClass())); //$NON-NLS-1$ + throw new AssertionError(String.format("The value was not a String! (%s)", value.getClass())); } }