You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2011/06/16 08:52:24 UTC

svn commit: r1136298 - in /cxf/branches/2.3.x-fixes: ./ rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java

Author: ningjiang
Date: Thu Jun 16 06:52:23 2011
New Revision: 1136298

URL: http://svn.apache.org/viewvc?rev=1136298&view=rev
Log:
Merged revisions 1136285 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/branches/2.4.x-fixes

........
  r1136285 | ningjiang | 2011-06-16 11:53:35 +0800 (Thu, 16 Jun 2011) | 1 line
  
  Fixed the typo of my last commit
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Thu Jun 16 06:52:23 2011
@@ -1,2 +1,2 @@
-/cxf/branches/2.4.x-fixes:1135488,1135908,1135911,1136274
+/cxf/branches/2.4.x-fixes:1135488,1135908,1135911,1136274,1136285
 /cxf/trunk:1135484,1135899

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java?rev=1136298&r1=1136297&r2=1136298&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java (original)
+++ cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java Thu Jun 16 06:52:23 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);