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 fa648e1  removed my logger System.out.println()
fa648e1 is described below

commit fa648e11dfa74fcac3aa098c8d6c1266fe8c6279
Author: tibordigana <[email protected]>
AuthorDate: Mon Oct 14 23:30:37 2019 +0200

    removed my logger System.out.println()
---
 .../src/main/java/org/apache/maven/surefire/booter/PpidChecker.java    | 3 ---
 1 file changed, 3 deletions(-)

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 c700579..b525acc 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,6 @@ 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
             return !parentProcessInfo.isInvalid()
                     && ( previousInfo == null || 
!parentProcessInfo.isTimeBefore( previousInfo ) );
@@ -366,12 +365,10 @@ final class PpidChecker
                 while ( scanner.hasNextLine() )
                 {
                     String line = scanner.nextLine().trim();
-                    // System.out.println( "java version " + 
System.getProperty( "java.version" ) + " line=" + line );
                     processInfo = consumeLine( line, processInfo );
                 }
                 checkValid( scanner );
                 int exitCode = process.waitFor();
-                // System.out.println( "isStopped=" + isStopped() + ", 
exitCode=" + exitCode );
                 return isStopped() ? ERR_PROCESS_INFO : exitCode == 0 ? 
processInfo : INVALID_PROCESS_INFO;
             }
             catch ( Exception e )

Reply via email to