
org.codehaus.plexus.util.xml.CompactXMLWriter Maven / Gradle / Ivy
Go to download
A collection of various utility classes to ease working with strings, files, command lines, XML and more.
package org.codehaus.plexus.util.xml;
import java.io.PrintWriter;
import java.io.Writer;
public class CompactXMLWriter extends PrettyPrintXMLWriter
{
public CompactXMLWriter( PrintWriter writer )
{
super( writer );
}
public CompactXMLWriter( Writer writer )
{
super( writer );
}
protected void endOfLine()
{
// override parent: don't write anything at end of line
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy