You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2015/03/26 01:15:44 UTC

[02/19] maven-surefire git commit: Remove debug output

Remove debug output


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/650ee156
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/650ee156
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/650ee156

Branch: refs/heads/master
Commit: 650ee1565ba504294a6fbcd1acf8e48e3efb7e2b
Parents: 7c6f63a
Author: Jörn Horstmann <gi...@jhorstmann.net>
Authored: Tue Dec 16 09:16:55 2014 +0100
Committer: Jörn Horstmann <gi...@jhorstmann.net>
Committed: Tue Dec 16 09:16:55 2014 +0100

----------------------------------------------------------------------
 .../apache/maven/surefire/common/junit48/FilterFactory.java    | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/650ee156/surefire-providers/common-junit48/src/main/java/org/apache/maven/surefire/common/junit48/FilterFactory.java
----------------------------------------------------------------------
diff --git a/surefire-providers/common-junit48/src/main/java/org/apache/maven/surefire/common/junit48/FilterFactory.java b/surefire-providers/common-junit48/src/main/java/org/apache/maven/surefire/common/junit48/FilterFactory.java
index a92076a..184d7d9 100644
--- a/surefire-providers/common-junit48/src/main/java/org/apache/maven/surefire/common/junit48/FilterFactory.java
+++ b/surefire-providers/common-junit48/src/main/java/org/apache/maven/surefire/common/junit48/FilterFactory.java
@@ -131,10 +131,6 @@ public class FilterFactory
                 String describedClassName = description.getClassName();
                 String describedMethodName = description.getMethodName();
 
-                System.out.println( "current description " + describedClassName + " " + describedMethodName );
-                System.out.println( "trying to match against " + this.className + " "
-                        + this.methodName );
-
                 if ( describedClassName != null )
                 {
                     if ( this.className.indexOf( '*' ) < 0 && this.className.indexOf( '?' ) < 0 )
@@ -198,8 +194,6 @@ public class FilterFactory
                     }
                 }
             }
-            System.out.println( requestString );
-
             this.requestString = requestString;
             this.requestedTestMethods = requestedTestMethods;
         }