Skip to content

Commit

Permalink
Merge branch '2.18' into 2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Nov 28, 2024
2 parents 44dffb2 + b7cbfbf commit 0432125
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Project: jackson-dataformat-xml

- Upgrade Woodstox to 7.1.0

2.18.2 (not yet released)
2.18.2 (27-Nov-2024)

#678: XML module not registered correctly when setting a custom `SerializerFactory`
(reported by @SimonCockx)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static final class Request {
@JacksonXmlProperty(localName = "message")
private final List<Message> messages;

private Request() { this.messages = null; }
Request() { this.messages = null; }
public Request(List<Message> messages) { this.messages = messages; }

public List<Message> getMessages() { return messages; }
Expand All @@ -44,7 +44,7 @@ public static final class Message {

private final String text;

private Message() { this.text = null; }
Message() { this.text = null; }
public Message(String text) { this.text = text; }

public String getText() { return text; }
Expand Down

0 comments on commit 0432125

Please sign in to comment.