--- a/hotspot/test/testlibrary/jdk/test/lib/ProcessTools.java Thu May 05 08:51:27 2016 -0700
+++ b/hotspot/test/testlibrary/jdk/test/lib/ProcessTools.java Thu May 05 17:53:37 2016 +0000
@@ -95,22 +95,6 @@
}
/**
- * Get the string containing input arguments passed to the VM
- *
- * @return arguments
- */
- public static String getVmInputArguments() {
- RuntimeMXBean runtime = ManagementFactory.getRuntimeMXBean();
-
- List<String> args = runtime.getInputArguments();
- StringBuilder result = new StringBuilder();
- for (String arg : args)
- result.append(arg).append(' ');
-
- return result.toString();
- }
-
- /**
* Gets the array of strings containing input arguments passed to the VM
*
* @return arguments