File tree 2 files changed +2
-2
lines changed
src/main/java/com/fasterxml/jackson/dataformat/xml
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public enum Feature implements FormatFeature
38
38
{
39
39
/**
40
40
* Feature that indicates whether XML Empty elements (ones where there are
41
- * no separate start and end tages, but just one tag that ends with "/> ")
41
+ * no separate start and end tages, but just one tag that ends with "/> ")
42
42
* are exposed as {@link JsonToken#VALUE_NULL}) or not. If they are not
43
43
* returned as `null` tokens, they will be returned as {@link JsonToken#VALUE_STRING}
44
44
* tokens with textual value of "" (empty String).
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public class XmlSerializerProvider extends DefaultSerializerProvider
30
30
31
31
/**
32
32
* If all we get to serialize is a null, there's no way to figure out
33
- * expected root name; so let's just default to something like "< null>".. .
33
+ * expected root name; so let's just default to literal {@code " null"} .
34
34
*/
35
35
protected final static QName ROOT_NAME_FOR_NULL = new QName ("null" );
36
36
You can’t perform that action at this time.
0 commit comments