sboag 00/12/31 01:34:30
Modified: java/src/org/apache/xalan/serialize FormatterToHTML.java
Log:
Just added commented-out debug statements.
Revision Changes Path
1.13 +2 -2
xml-xalan/java/src/org/apache/xalan/serialize/FormatterToHTML.java
Index: FormatterToHTML.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/serialize/FormatterToHTML.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- FormatterToHTML.java 2000/12/18 21:33:55 1.12
+++ FormatterToHTML.java 2000/12/31 09:34:30 1.13
@@ -451,7 +451,6 @@
{
super();
-
m_charInfo = m_htmlcharInfo;
}
@@ -522,6 +521,7 @@
String namespaceURI, String localName, String name, Attributes
atts)
throws org.xml.sax.SAXException
{
+ // System.out.println("FormatterToHTML#startElement("+namespaceURI+",
"+localName+", "+name+", ...);");
if (null != namespaceURI && namespaceURI.length() > 0)
{
@@ -615,7 +615,7 @@
public void endElement(String namespaceURI, String localName, String name)
throws org.xml.sax.SAXException
{
-
+ // System.out.println("FormatterToHTML#endElement("+namespaceURI+",
"+localName+", "+name+");");
if (null != namespaceURI && namespaceURI.length() > 0)
{
super.endElement(namespaceURI, localName, name);