This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch SUREFIRE-1689
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/SUREFIRE-1689 by this push:
     new 988d226  fixed checkstyle
988d226 is described below

commit 988d22605f3a7f2cca0b7421c766565839d47f4f
Author: tibordigana <[email protected]>
AuthorDate: Mon Oct 14 15:22:22 2019 +0200

    fixed checkstyle
---
 .../src/main/java/org/apache/maven/surefire/booter/PpidChecker.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/PpidChecker.java
 
b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/PpidChecker.java
index 02885c1..86f0c4f 100644
--- 
a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/PpidChecker.java
+++ 
b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/PpidChecker.java
@@ -125,7 +125,8 @@ final class PpidChecker
             parentProcessInfo = unix();
             checkProcessInfo();
 
-            System.out.println( "isInvalid=" + parentProcessInfo.isInvalid() + 
", previousInfo=" + previousInfo );// let's compare elapsed time, should be 
greater or equal if parent process is the same and still alive
+            System.out.println( "isInvalid=" + parentProcessInfo.isInvalid() + 
", previousInfo=" + previousInfo );
+            // let's compare elapsed time, should be greater or equal if 
parent process is the same and still alive
             return !parentProcessInfo.isInvalid()
                     && ( previousInfo == null || 
!parentProcessInfo.isTimeBefore( previousInfo ) );
         }

Reply via email to