Skip to content
Snippets Groups Projects
Commit 54bc600f authored by dgelessus's avatar dgelessus
Browse files

Remove unused argument of startJVM

parent 7933e089
No related branches found
No related tags found
No related merge requests found
...@@ -158,7 +158,7 @@ public class TestUtil { ...@@ -158,7 +158,7 @@ public class TestUtil {
} }
private static TLCResult runTLC(String runnerClassName, String[] args) throws IOException { private static TLCResult runTLC(String runnerClassName, String[] args) throws IOException {
final Process p = startJVM("", runnerClassName, args); final Process p = startJVM(runnerClassName, args);
StreamGobbler stdOut = new StreamGobbler(p.getInputStream()); StreamGobbler stdOut = new StreamGobbler(p.getInputStream());
stdOut.start(); stdOut.start();
try { try {
...@@ -179,7 +179,7 @@ public class TestUtil { ...@@ -179,7 +179,7 @@ public class TestUtil {
} }
private static Process startJVM(final String optionsAsString, final String mainClass, final String[] arguments) private static Process startJVM(final String mainClass, final String[] arguments)
throws IOException { throws IOException {
String separator = System.getProperty("file.separator"); String separator = System.getProperty("file.separator");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment