This is an automated email from the ASF dual-hosted git repository. fschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jmeter.git The following commit(s) were added to refs/heads/master by this push: new af6fc56 Remove unsused private field and change javadoc accordingly af6fc56 is described below commit af6fc5690f4ba2fdf8ea68e2453abf7a95354b29 Author: Felix Schumacher AuthorDate: Thu Oct 31 22:17:45 2019 +0100 Remove unsused private field and change javadoc accordingly --- src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java b/src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java index b737fa9..631b76c 100644 --- a/src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java +++ b/src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java @@ -52,7 +52,6 @@ public class SystemCommand { private final boolean stdoutWasNull; private final OutputStream stderr; private final long timeoutMillis; - private final int pollInterval; /** * @param env Environment variables appended to environment (may be null) @@ -101,7 +100,7 @@ public class SystemCommand { * @param env Environment variables appended to environment (may be null) * @param directory File working directory (may be null) * @param timeoutMillis timeout in Milliseconds - * @param pollInterval Value used to poll for Process execution end + * @param pollInterval not used anymore * @param stdin File name that will contain data to be input to process (may be null) * @param stdout File name that will contain out stream (may be null) * @param stderr File name that will contain err stream (may be null) @@ -112,7 +111,6 @@ public class SystemCommand { this.timeoutMillis = timeoutMillis; this.directory = directory; this.env = env; - this.pollInterval = pollInterval; this.stdin = stdin; this.stdoutWasNull = stdout == null; if (stdout == null) {