All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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.

There is a newer version: 4.0.2
Show newest version
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