File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
src/main/java/tools/jackson/dataformat/xml/deser Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,12 @@ public class FromXmlParser
35
35
implements ElementWrappable
36
36
{
37
37
/**
38
- * The default name placeholder for XML text segments is <xml:text>
39
- * @since 3.0 Is now <xml:text> - was empty String ("") before.
38
+ * The default name placeholder for XML text segments: used because Token stream
39
+ * requires all values inside "Objects" to have names associated.
40
+ * For Jackson 3.x this is {@code <xml:text>}; in 2.x matching constant was defined
41
+ * as empty String ({@code ""}).
42
+ *
43
+ * @since 3.0 Constant was renamed: was {@code DEFAULT_UNNAMED_TEXT_PROPERTY} in 2.x
40
44
*/
41
45
public final static String DEFAULT_TEXT_PROPERTY = "<xml:text>" ;
42
46
You can’t perform that action at this time.
0 commit comments