You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2006/07/01 05:10:25 UTC

svn commit: r418431 - /xerces/java/trunk/src/org/apache/xerces/parsers/AbstractDOMParser.java

Author: mrglavas
Date: Fri Jun 30 20:10:24 2006
New Revision: 418431

URL: http://svn.apache.org/viewvc?rev=418431&view=rev
Log:
Remove extra spaces added to comments in the internal subset.

Modified:
    xerces/java/trunk/src/org/apache/xerces/parsers/AbstractDOMParser.java

Modified: xerces/java/trunk/src/org/apache/xerces/parsers/AbstractDOMParser.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/parsers/AbstractDOMParser.java?rev=418431&r1=418430&r2=418431&view=diff
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/parsers/AbstractDOMParser.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/parsers/AbstractDOMParser.java Fri Jun 30 20:10:24 2006
@@ -579,11 +579,11 @@
     public void comment (XMLString text, Augmentations augs) throws XNIException {
         if (fInDTD) {
             if (fInternalSubset != null && !fInDTDExternalSubset) {
-                fInternalSubset.append ("<!-- ");
+                fInternalSubset.append ("<!--");
                 if (text.length > 0) {
                     fInternalSubset.append (text.ch, text.offset, text.length);
                 }
-                fInternalSubset.append (" -->");
+                fInternalSubset.append ("-->");
             }
             return;
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org