remove waitfor (redundant)

This commit is contained in:
adam-m 2013-02-11 15:37:15 -05:00
parent 380c82cf37
commit bc534eb19b

View File

@ -146,7 +146,6 @@ public final class JavaSystemCaller {
logger.log(Level.INFO, "Executing " + aShell.getShellCommand() + " " + command);
proc = rt.exec(aShell.getShellCommand() + " " + command);
proc.waitFor();
// any error message?
final JavaSystemCaller.StreamGobbler errorGobbler = new JavaSystemCaller.StreamGobbler(proc.getErrorStream(), "ERROR");