aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/system/ProcessExecuter.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespajlib/src/main/java/com/yahoo/system/ProcessExecuter.java')
-rw-r--r--vespajlib/src/main/java/com/yahoo/system/ProcessExecuter.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/system/ProcessExecuter.java b/vespajlib/src/main/java/com/yahoo/system/ProcessExecuter.java
index bb2909b346a..609fab1c58f 100644
--- a/vespajlib/src/main/java/com/yahoo/system/ProcessExecuter.java
+++ b/vespajlib/src/main/java/com/yahoo/system/ProcessExecuter.java
@@ -12,12 +12,13 @@ import com.yahoo.collections.Pair;
/**
* Executes a system command synchronously.
*
- * @author <a href="mailto:bratseth@yahoo-inc">Jon S Bratseth</a>
+ * @author bratseth
*/
public class ProcessExecuter {
/**
* Executes the given command synchronously without timeout.
+ *
* @return Retcode and stdout/stderr merged
*/
public Pair<Integer, String> exec(String command) throws IOException {
@@ -29,6 +30,7 @@ public class ProcessExecuter {
/**
* Executes the given command synchronously without timeout.
+ *
* @param command tokens
* @return Retcode and stdout/stderr merged
*/