You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/07/24 14:19:34 UTC

svn commit: r1613093 - /commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java

Author: ggregory
Date: Thu Jul 24 12:19:34 2014
New Revision: 1613093

URL: http://svn.apache.org/r1613093
Log:
Remove extra parens.

Modified:
    commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java

Modified: commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java?rev=1613093&r1=1613092&r2=1613093&view=diff
==============================================================================
--- commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java (original)
+++ commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/DefaultExecuteResultHandler.java Thu Jul 24 12:19:34 2014
@@ -139,7 +139,7 @@ public class DefaultExecuteResultHandler
 
         final long until = System.currentTimeMillis() + timeout;
 
-        while (!hasResult() && (System.currentTimeMillis() < until)) {
+        while (!hasResult() && System.currentTimeMillis() < until) {
             Thread.sleep(SLEEP_TIME_MS);
         }
     }