40
40
* @author Kristian Rosenvold
41
41
*/
42
42
public class Xpp3DomBuilder {
43
- private static final boolean DEFAULT_TRIM = true ;
44
43
45
44
/**
46
45
* @param reader {@link Reader}
47
46
* @return the built DOM
48
47
* @throws XmlPullParserException in case of an error
49
48
*/
50
49
public static Xpp3Dom build (@ WillClose @ Nonnull Reader reader ) throws XmlPullParserException {
51
- return build (reader , DEFAULT_TRIM );
50
+ return build (reader , false );
52
51
}
53
52
54
53
/**
@@ -58,45 +57,49 @@ public static Xpp3Dom build(@WillClose @Nonnull Reader reader) throws XmlPullPar
58
57
* @throws XmlPullParserException in case of an error
59
58
*/
60
59
public static Xpp3Dom build (@ WillClose InputStream is , @ Nonnull String encoding ) throws XmlPullParserException {
61
- return build (is , encoding , DEFAULT_TRIM );
60
+ return build (is , encoding , false );
62
61
}
63
62
64
63
/**
65
64
* @param is {@link InputStream}
66
65
* @param encoding the encoding
67
- * @param trim true/false
66
+ * @param noop vestigial argument with no effect
68
67
* @return the built DOM
69
68
* @throws XmlPullParserException in case of an error
69
+ * @deprecated use the two-arg variant
70
70
*/
71
- public static Xpp3Dom build (@ WillClose InputStream is , @ Nonnull String encoding , boolean trim )
71
+ @ Deprecated
72
+ public static Xpp3Dom build (@ WillClose InputStream is , @ Nonnull String encoding , boolean noop )
72
73
throws XmlPullParserException {
73
74
try {
74
75
Reader reader = new InputStreamReader (is , encoding );
75
- return build (reader , trim );
76
+ return build (reader );
76
77
} catch (UnsupportedEncodingException e ) {
77
78
throw new XmlPullParserException (e );
78
79
}
79
80
}
80
81
81
82
/**
82
83
* @param in {@link Reader}
83
- * @param trim true/false
84
+ * @param noop vestigial argument with no effect
84
85
* @return the built DOM
85
86
* @throws XmlPullParserException in case of an error
87
+ * @deprecated use {#build(java.io.Reader)}
86
88
*/
87
- public static Xpp3Dom build (@ WillClose Reader in , boolean trim ) throws XmlPullParserException {
89
+ @ Deprecated
90
+ public static Xpp3Dom build (@ WillClose Reader in , boolean noop ) throws XmlPullParserException {
88
91
try (Reader reader = in ) {
89
- DocHandler docHandler = parseSax (new InputSource (reader ), trim );
92
+ DocHandler docHandler = parseSax (new InputSource (reader ));
90
93
reader .close ();
91
94
return docHandler .result ;
92
95
} catch (final IOException e ) {
93
96
throw new XmlPullParserException (e );
94
97
}
95
98
}
96
99
97
- private static DocHandler parseSax (@ Nonnull InputSource inputSource , boolean trim ) throws XmlPullParserException {
100
+ private static DocHandler parseSax (@ Nonnull InputSource inputSource ) throws XmlPullParserException {
98
101
try {
99
- DocHandler ch = new DocHandler (trim );
102
+ DocHandler ch = new DocHandler ();
100
103
XMLReader parser = createXmlReader ();
101
104
parser .setContentHandler (ch );
102
105
parser .parse (inputSource );
@@ -147,14 +150,8 @@ private static class DocHandler extends DefaultHandler {
147
150
148
151
Xpp3Dom result = null ;
149
152
150
- private final boolean trim ;
151
-
152
153
private boolean spacePreserve = false ;
153
154
154
- DocHandler (boolean trim ) {
155
- this .trim = trim ;
156
- }
157
-
158
155
@ Override
159
156
public void startElement (String uri , String localName , String qName , Attributes attributes )
160
157
throws SAXException {
@@ -216,7 +213,7 @@ public void endElement(String uri, String localName, String qName) throws SAXExc
216
213
@ Override
217
214
public void characters (char [] ch , int start , int length ) throws SAXException {
218
215
String text = new String (ch , start , length );
219
- appendToTopValue (( trim && ! spacePreserve ) ? text . trim () : text );
216
+ appendToTopValue (text );
220
217
}
221
218
222
219
private void appendToTopValue (String toAppend ) {
0 commit comments