From bc534eb19b7eb91c56c7a08fe2bca075bd7b7156 Mon Sep 17 00:00:00 2001 From: adam-m Date: Mon, 11 Feb 2013 15:37:15 -0500 Subject: [PATCH] remove waitfor (redundant) --- .../org/sleuthkit/autopsy/recentactivity/JavaSystemCaller.java | 1 - 1 file changed, 1 deletion(-) diff --git a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/JavaSystemCaller.java b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/JavaSystemCaller.java index 21e6eb62c3..99c696357d 100644 --- a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/JavaSystemCaller.java +++ b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/JavaSystemCaller.java @@ -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");