You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by aj...@apache.org on 2005/02/01 05:39:16 UTC

svn commit: r149368 - in webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom: serialize/StreamingOMSerializer.java util/StreamWriterToContentHandlerConverter.java

Author: ajith
Date: Mon Jan 31 20:39:15 2005
New Revision: 149368

URL: http://svn.apache.org/viewcvs?view=rev&rev=149368
Log:
removed some unwanted flush statements

Modified:
    webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/serialize/StreamingOMSerializer.java
    webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/util/StreamWriterToContentHandlerConverter.java

Modified: webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/serialize/StreamingOMSerializer.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/serialize/StreamingOMSerializer.java?view=diff&r1=149367&r2=149368
==============================================================================
--- webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/serialize/StreamingOMSerializer.java (original)
+++ webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/serialize/StreamingOMSerializer.java Mon Jan 31 20:39:15 2005
@@ -70,7 +70,6 @@
                     //this is eaten
                 }
             }
-            writer.flush();
         }
     }
 

Modified: webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/util/StreamWriterToContentHandlerConverter.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/util/StreamWriterToContentHandlerConverter.java?view=diff&r1=149367&r2=149368
==============================================================================
--- webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/util/StreamWriterToContentHandlerConverter.java (original)
+++ webservices/axis/trunk/java/dev/scratch/prototype2/src/java/org/apache/axis/impl/llom/util/StreamWriterToContentHandlerConverter.java Mon Jan 31 20:39:15 2005
@@ -41,7 +41,6 @@
     public void characters(char ch[], int start, int length) throws SAXException {
         try {
             writer.writeCharacters(ch, start, length);
-            writer.flush();
         } catch (XMLStreamException e) {
             throw new SAXException(e);
         }