Author: ningjiang
Date: Thu Jun 16 03:52:43 2011
New Revision: 1136284
URL: http://svn.apache.org/viewvc?rev=1136284&view=rev
Log:
Fixed the typo of my last commit
Modified:
cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
Modified:
cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java?rev=1136284&r1=1136283&r2=1136284&view=diff
==============================================================================
---
cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
(original)
+++
cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
Thu Jun 16 03:52:43 2011
@@ -145,7 +145,7 @@ public abstract class AbstractLoggingInt
message = transform(message);
if (writer != null) {
writer.println(message);
- // Flush the writer to make sure the message is wrote
+ // Flushing the writer to make sure the message is written
writer.flush();
} else if (getLogger().isLoggable(Level.INFO)) {
getLogger().info(message);