aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/system/ProcessExecuter.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-06-16 15:08:49 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-06-16 15:08:49 +0200
commit38ff012425e1d65a5016ff090c5163892ebecc89 (patch)
tree593af280350a1c2b7f34bc79f37584ad256a93e7 /vespajlib/src/main/java/com/yahoo/system/ProcessExecuter.java
parent72231250ed81e10d66bfe70701e64fa5fe50f712 (diff)
Use github name in @author
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
*/