File tree 3 files changed +9
-1
lines changed
src/main/java/com/fasterxml/jackson/dataformat/xml/ser 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,11 @@ Eric Schoonover (spoon16@github)
77
77
matches `@JacksonXmlRootElement` localName
78
78
(2.12.0 )
79
79
80
+ Dave Jarvis (DaveJarvis@github)
81
+
82
+ * Requested #262 : Make `ToXmlGenerator` non-final
83
+ (2.12.0 )
84
+
80
85
Joseph Petersen (jetersen@github)
81
86
82
87
* Reported #273 : Input mismatch with case-insensitive properties
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ Project: jackson-dataformat-xml
6
6
7
7
2.12.0 (not yet released)
8
8
9
+ #262 : Make `ToXmlGenerator` non-final
10
+ (requested by Dave J)
9
11
#273 : Input mismatch with case -insensitive properties
10
12
(reported by Joseph P)
11
13
#318 : XMLMapper fails to deserialize null (POJO reference) from blank tag
Original file line number Diff line number Diff line change 27
27
* additional configuration calls beyond regular {@link JsonGenerator} API,
28
28
* mostly to pass namespace information.
29
29
*/
30
- public final class ToXmlGenerator
30
+ public class ToXmlGenerator
31
+ // non-final since 2.12 but only sub-class if you really know what you are doing...
31
32
extends GeneratorBase
32
33
{
33
34
/**
You can’t perform that action at this time.
0 commit comments