Skip to content

Commit 97c9e58

Browse files
committed
minor javadoc fixes
1 parent cc3f54d commit 97c9e58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/fasterxml/jackson/dataformat/xml/deser/FromXmlParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public enum Feature implements FormatFeature
3838
{
3939
/**
4040
* 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 "/>")
4242
* are exposed as {@link JsonToken#VALUE_NULL}) or not. If they are not
4343
* returned as `null` tokens, they will be returned as {@link JsonToken#VALUE_STRING}
4444
* tokens with textual value of "" (empty String).

src/main/java/com/fasterxml/jackson/dataformat/xml/ser/XmlSerializerProvider.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class XmlSerializerProvider extends DefaultSerializerProvider
3030

3131
/**
3232
* 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"}.
3434
*/
3535
protected final static QName ROOT_NAME_FOR_NULL = new QName("null");
3636

0 commit comments

Comments
 (0)