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 <[email protected]> Authored: Tue Dec 16 09:16:55 2014 +0100 Committer: Jörn Horstmann <[email protected]> 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; }
