--- old/application/tests/org.openjdk.jmc.rjmx.test/src/test/java/org/openjdk/jmc/rjmx/test/subscription/AttributeValueTest.java 2019-02-27 20:12:38.000000000 +0100 +++ new/application/tests/org.openjdk.jmc.rjmx.test/src/test/java/org/openjdk/jmc/rjmx/test/subscription/AttributeValueTest.java 2019-02-27 20:12:37.000000000 +0100 @@ -112,12 +112,12 @@ private static List createCommonAttributesList(IConnectionHandle connectionHandle) { List fetchList = new ArrayList<>(); - fetchList.add(new MRI(Type.ATTRIBUTE, "java.lang:type=OperatingSystem", "SystemCpuLoad")); //$NON-NLS-1$ //$NON-NLS-2$ - fetchList.add(new MRI(Type.ATTRIBUTE, "java.lang:type=OperatingSystem", "ProcessCpuLoad")); //$NON-NLS-1$ //$NON-NLS-2$ - fetchList.add(new MRI(Type.ATTRIBUTE, "java.lang:type=OperatingSystem", //$NON-NLS-1$ - "TotalPhysicalMemorySize")); //$NON-NLS-1$ - fetchList.add(new MRI(Type.ATTRIBUTE, "java.lang:type=OperatingSystem", //$NON-NLS-1$ - "UsedPhysicalMemorySize")); //$NON-NLS-1$ + fetchList.add(new MRI(Type.ATTRIBUTE, "java.lang:type=OperatingSystem", "SystemCpuLoad")); + fetchList.add(new MRI(Type.ATTRIBUTE, "java.lang:type=OperatingSystem", "ProcessCpuLoad")); + fetchList.add(new MRI(Type.ATTRIBUTE, "java.lang:type=OperatingSystem", + "TotalPhysicalMemorySize")); + fetchList.add(new MRI(Type.ATTRIBUTE, "java.lang:type=OperatingSystem", + "UsedPhysicalMemorySize")); return fetchList; } }