From: <th...@us...> - 2004-01-13 12:00:19
|
Update of /cvsroot/jaxme/JaxMe/src/runtime/de/ispsoft/jaxme In directory sc8-pr-cvs1:/tmp/cvs-serv20851/src/runtime/de/ispsoft/jaxme Modified Files: XMLSerializerNoNS.java Log Message: tamino session handling bugfixed Index: XMLSerializerNoNS.java =================================================================== RCS file: /cvsroot/jaxme/JaxMe/src/runtime/de/ispsoft/jaxme/XMLSerializerNoNS.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- XMLSerializerNoNS.java 6 Jan 2004 10:24:58 -0000 1.1 +++ XMLSerializerNoNS.java 13 Jan 2004 12:00:16 -0000 1.2 @@ -86,10 +86,6 @@ */ public void startElement(String namespaceURI, String localName, String qName, Attributes attr) throws SAXException { - cat.debug("startElement ->"); - cat.debug("namespaceURI: " + namespaceURI); - cat.debug("localName: " + localName); - cat.debug("qName: " + qName); try { stopTerminator(); if (curIndent > 0) { @@ -104,7 +100,6 @@ for (int i = attr.getLength(); i > 0;) { w.write(' '); String name = attr.getQName(--i); - cat.debug("name: " + name); if (delayedPrefixes != null) { delayedPrefixes.remove(name); } |