From commits-return-10251-apmail-jmeter-commits-archive=jmeter.apache.org@jmeter.apache.org Thu Oct 31 21:17:59 2019 Return-Path: X-Original-To: apmail-jmeter-commits-archive@minotaur.apache.org Delivered-To: apmail-jmeter-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by minotaur.apache.org (Postfix) with SMTP id AC4A910AC4 for ; Thu, 31 Oct 2019 21:17:59 +0000 (UTC) Received: (qmail 68980 invoked by uid 500); 31 Oct 2019 21:17:59 -0000 Delivered-To: apmail-jmeter-commits-archive@jmeter.apache.org Received: (qmail 68964 invoked by uid 500); 31 Oct 2019 21:17:59 -0000 Mailing-List: contact commits-help@jmeter.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jmeter.apache.org Delivered-To: mailing list commits@jmeter.apache.org Received: (qmail 68955 invoked by uid 99); 31 Oct 2019 21:17:59 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Oct 2019 21:17:59 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id EDAF5805E6; Thu, 31 Oct 2019 21:17:58 +0000 (UTC) Date: Thu, 31 Oct 2019 21:17:58 +0000 To: "commits@jmeter.apache.org" Subject: [jmeter] branch master updated: Remove unsused private field and change javadoc accordingly MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157255667888.25177.15197183778476000437@gitbox.apache.org> From: fschumacher@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: jmeter X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 25d050f5d404f89a5621484263cc68d9152e122a X-Git-Newrev: af6fc5690f4ba2fdf8ea68e2453abf7a95354b29 X-Git-Rev: af6fc5690f4ba2fdf8ea68e2453abf7a95354b29 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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) {