File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
metafacture-xml/src/main/java/org/metafacture/xml Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 53
53
public final class SimpleXmlEncoder extends DefaultStreamPipe <ObjectReceiver <String >> {
54
54
55
55
public static final String ATTRIBUTE_MARKER = "~" ;
56
+ public static final String DEFAULT_VALUE_TAG = "" ;
56
57
57
58
private static final String NEW_LINE = "\n " ;
58
59
private static final String INDENT = "\t " ;
@@ -73,7 +74,7 @@ public final class SimpleXmlEncoder extends DefaultStreamPipe<ObjectReceiver<Str
73
74
private String attributeMarker = ATTRIBUTE_MARKER ;
74
75
private String rootTag = DefaultXmlPipe .DEFAULT_ROOT_TAG ;
75
76
private String recordTag = DefaultXmlPipe .DEFAULT_RECORD_TAG ;
76
- private String valueTag = DefaultXmlPipe . DEFAULT_VALUE_TAG ;
77
+ private String valueTag = DEFAULT_VALUE_TAG ;
77
78
private Map <String , String > namespaces = new HashMap <String , String >();
78
79
private boolean writeRootTag = true ;
79
80
private boolean writeXmlHeader = true ;
You can’t perform that action at this time.
0 commit comments