Author: ningjiang
Date: Thu Jun 16 03:53:35 2011
New Revision: 1136285

URL: http://svn.apache.org/viewvc?rev=1136285&view=rev
Log:
Fixed the typo of my last commit

Modified:
    
cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java

Modified: 
cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
URL: 
http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java?rev=1136285&r1=1136284&r2=1136285&view=diff
==============================================================================
--- 
cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
 (original)
+++ 
cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
 Thu Jun 16 03:53:35 2011
@@ -145,7 +145,7 @@ public abstract class AbstractLoggingInt
         message = transform(message);
         if (writer != null) {
             writer.println(message);
-            // Flushing the writer to make sure the message is wroten 
+            // Flushing the writer to make sure the message is written 
             writer.flush();
         } else if (getLogger().isLoggable(Level.INFO)) {
             getLogger().info(message);


Reply via email to