Changeset 142

Show
Ignore:
Timestamp:
12/12/06 21:15:44 (5 years ago)
Author:
amandel
Message:

Fixed #22. Encoded Xml data was not appended to the output.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/java/org/jcoderz/commons/doclet/XmlDoclet.java

    r130 r142  
    746746         label = ""; 
    747747      } 
    748       XmlUtil.escape(label); 
     748      mOut.write(XmlUtil.escape(label)); 
    749749      mOut.write("</see>"); 
    750750   } 
     
    864864         mOut.write(name); 
    865865         mOut.write("='"); 
    866          XmlUtil.attributeEscape(value); 
     866         mOut.write(XmlUtil.attributeEscape(value)); 
    867867         mOut.write("'"); 
    868868      }