Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 54592 invoked from network); 10 Feb 2004 16:55:54 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 10 Feb 2004 16:55:54 -0000 Received: (qmail 46848 invoked by uid 500); 10 Feb 2004 16:55:01 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 46808 invoked by uid 500); 10 Feb 2004 16:55:01 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 46725 invoked from network); 10 Feb 2004 16:54:59 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 10 Feb 2004 16:54:59 -0000 Received: (qmail 54120 invoked by uid 1203); 10 Feb 2004 16:55:05 -0000 Date: 10 Feb 2004 16:55:05 -0000 Message-ID: <20040210165505.54119.qmail@minotaur.apache.org> From: dims@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/java/src/org/apache/axis/utils XMLUtils.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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;