Skip to content

Commit

Permalink
minor warnings removal
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Nov 28, 2024
1 parent 06d28aa commit 21dfc4f
Showing 1 changed file with 2 additions and 2 deletions.
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 21dfc4f

Please sign in to comment.