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 2016/09/03 22:35:25 UTC

[07/14] maven-surefire git commit: refactoring

refactoring


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

Branch: refs/heads/master
Commit: 949cb8dc5a09f356dd53a028e25381a24ce7db20
Parents: a63c6bb
Author: Tibor17 <ti...@lycos.com>
Authored: Fri Aug 26 22:59:51 2016 +0200
Committer: Tibor17 <ti...@lycos.com>
Committed: Fri Aug 26 22:59:51 2016 +0200

----------------------------------------------------------------------
 .../org/apache/maven/plugin/surefire/report/ConsoleReporter.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/949cb8dc/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/ConsoleReporter.java
----------------------------------------------------------------------
diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/ConsoleReporter.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/ConsoleReporter.java
index eabb447..1fcf4b0 100644
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/ConsoleReporter.java
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/ConsoleReporter.java
@@ -93,7 +93,7 @@ public class ConsoleReporter
      * @param report report whose test set is starting
      * @return the message
      */
-    static String getTestSetStartingMessage( ReportEntry report )
+    private static String getTestSetStartingMessage( ReportEntry report )
     {
         return TEST_SET_STARTING_PREFIX + report.getNameWithGroup() + "\n";
     }