You are viewing a plain text version of this content. The canonical link for it is here.
Posted to surefire-commits@maven.apache.org by kr...@apache.org on 2010/12/02 22:54:56 UTC

svn commit: r1041602 - /maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/SynchronizedOutputConsumer.java

Author: krosenvold
Date: Thu Dec  2 21:54:56 2010
New Revision: 1041602

URL: http://svn.apache.org/viewvc?rev=1041602&view=rev
Log:
o This time also with asf code style.

I will not have the wrong style settings active in idea when coding.
I will not have the wrong style settings active in idea when coding.
I will not have the wrong style settings active in idea when coding.
I will not have the wrong style settings active in idea when coding.
I will not have the wrong style settings active in idea when coding.
I will not have the wrong style settings active in idea when coding.
I will not have the wrong style settings active in idea when coding.
I will not have the wrong style settings active in idea when coding.
I will not have the wrong style settings active in idea when coding.
I will not have the wrong style settings active in idea when coding.

Maybe I used the clipboard.

Modified:
    maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/SynchronizedOutputConsumer.java

Modified: maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/SynchronizedOutputConsumer.java
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/SynchronizedOutputConsumer.java?rev=1041602&r1=1041601&r2=1041602&view=diff
==============================================================================
--- maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/SynchronizedOutputConsumer.java (original)
+++ maven/surefire/trunk/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/SynchronizedOutputConsumer.java Thu Dec  2 21:54:56 2010
@@ -23,37 +23,47 @@ import org.apache.maven.surefire.report.
 
 /**
  * Imposes synchronization on a non-thredsafe OutputConsumer
+ *
  * @author Kristian Rosenvold
  */
-public class SynchronizedOutputConsumer implements OutputConsumer {
+public class SynchronizedOutputConsumer
+    implements OutputConsumer
+{
 
     final OutputConsumer target;
 
-    public SynchronizedOutputConsumer(OutputConsumer target) {
+    public SynchronizedOutputConsumer( OutputConsumer target )
+    {
         this.target = target;
     }
 
-    public synchronized void consumeHeaderLine(String line) {
-        target.consumeHeaderLine(line);
+    public synchronized void consumeHeaderLine( String line )
+    {
+        target.consumeHeaderLine( line );
     }
 
-    public synchronized void consumeMessageLine(String line) {
-        target.consumeMessageLine(line);
+    public synchronized void consumeMessageLine( String line )
+    {
+        target.consumeMessageLine( line );
     }
 
-    public synchronized void consumeFooterLine(String line) {
-        target.consumeFooterLine(line);
+    public synchronized void consumeFooterLine( String line )
+    {
+        target.consumeFooterLine( line );
     }
 
-    public synchronized void consumeOutputLine(String line) {
-        target.consumeOutputLine(line);
+    public synchronized void consumeOutputLine( String line )
+    {
+        target.consumeOutputLine( line );
     }
 
-    public synchronized void testSetStarting(ReportEntry reportEntry) {
-        target.testSetStarting(reportEntry);
+    public synchronized void testSetStarting( ReportEntry reportEntry )
+    {
+        target.testSetStarting( reportEntry );
     }
 
-    public synchronized void testSetCompleted() {
+    public synchronized void testSetCompleted()
+    {
         target.testSetCompleted();
     }
 }