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 di...@apache.org on 2004/02/10 17:55:05 UTC

cvs commit: ws-axis/java/src/org/apache/axis/utils XMLUtils.java

dims        2004/02/10 08:55:05

  Modified:    java/src/org/apache/axis/utils XMLUtils.java
  Log:
  Don't Pretty unnecessarily.
  
  Revision  Changes    Path
  1.91      +1 -1      ws-axis/java/src/org/apache/axis/utils/XMLUtils.java
  
  Index: XMLUtils.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/utils/XMLUtils.java,v
  retrieving revision 1.90
  retrieving revision 1.91
  diff -u -r1.90 -r1.91
  --- XMLUtils.java	1 Dec 2003 14:57:18 -0000	1.90
  +++ XMLUtils.java	10 Feb 2004 16:55:05 -0000	1.91
  @@ -695,7 +695,7 @@
                   node = ((Document)node).getDocumentElement();
               }
               Element domElement = (Element)node;
  -            PrettyElementToStream(domElement, baos);
  +            ElementToStream(domElement, baos);
               InputSource  isource = new InputSource(source.getSystemId());
               isource.setByteStream(new ByteArrayInputStream(baos.toByteArray()));
               return isource;