1 package com.thoughtworks.xstream.xml.text;
2
3 import java.io.PrintWriter;
4 import java.io.Writer;
5
6 public class CompactXMLWriter extends PrettyPrintXMLWriter {
7
8 public CompactXMLWriter(PrintWriter writer) {
9 super(writer);
10 }
11
12 public CompactXMLWriter(Writer writer) {
13 super(writer);
14 }
15
16 protected void endOfLine() {
17 // override parent: don't write anything at end of line
18 }
19 }
This page was automatically generated by Maven