--- projects/cms/source/host/java/XMLFormatter.java 2000/12/08 12:24:00 1.5 +++ projects/cms/source/host/java/XMLFormatter.java 2001/03/19 17:30:17 1.6 @@ -5,13 +5,14 @@ import java.util.*; /** * Formats data into valid XML - * By calling either addElement() or addNest() you can use this - * class to create valid xml. When all elements have been added - * calling returnXML() will return a string containing the xml. + * By calling either addElement() or addNest() you can use + * this class to create valid xml. When all elements have + * been added calling returnXML() will return a string + * containing the xml. * * * @author $Author: ab11 $ - * @version $Id: XMLFormatter.java,v 1.5 2000/12/08 12:24:00 ab11 Exp $ + * @version $Id: XMLFormatter.java,v 1.6 2001/03/19 17:30:17 ab11 Exp $ */ class XMLFormatter { @@ -20,7 +21,7 @@ class XMLFormatter { /** * The current CVS revision of this class */ - public final String REVISION = "$Revision: 1.5 $"; + public final String REVISION = "$Revision: 1.6 $"; //---STATIC METHODS---