Author: amassari
Date: Wed Jan  4 10:06:15 2012
New Revision: 1227095

URL: http://svn.apache.org/viewvc?rev=1227095&view=rev
Log:
Remove tabs

Modified:
    xerces/c/trunk/src/xercesc/dom/impl/DOMLSSerializerImpl.cpp

Modified: xerces/c/trunk/src/xercesc/dom/impl/DOMLSSerializerImpl.cpp
URL: 
http://svn.apache.org/viewvc/xerces/c/trunk/src/xercesc/dom/impl/DOMLSSerializerImpl.cpp?rev=1227095&r1=1227094&r2=1227095&view=diff
==============================================================================
--- xerces/c/trunk/src/xercesc/dom/impl/DOMLSSerializerImpl.cpp (original)
+++ xerces/c/trunk/src/xercesc/dom/impl/DOMLSSerializerImpl.cpp Wed Jan  4 
10:06:15 2012
@@ -1742,15 +1742,15 @@ bool DOMLSSerializerImpl::isNamespaceBin
 void DOMLSSerializerImpl::ensureValidString(const DOMNode* nodeToWrite, const 
XMLCh* string)
 {
     // XERCESC-1854: prevent illegal characters from being written
-       if(string==0)
-               return;
-       const XMLCh* cursor=string;
-       while(*cursor!=0)
-       {
+    if(string==0)
+        return;
+    const XMLCh* cursor=string;
+    while(*cursor!=0)
+    {
         if((fIsXml11 && !XMLChar1_1::isXMLChar(*cursor)) || (!fIsXml11 && 
!XMLChar1_0::isXMLChar(*cursor)))
             reportError(nodeToWrite, DOMError::DOM_SEVERITY_FATAL_ERROR, 
XMLDOMMsg::INVALID_CHARACTER_ERR);
-               cursor++;
-       }
+        cursor++;
+    }
 }
 
 XERCES_CPP_NAMESPACE_END



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to