Skip to content

Commit

Permalink
replace null with empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
Snabeldier committed Jan 6, 2025
1 parent 7b15a83 commit 79b1237
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public interface EmbeddedMessage {
EmbeddedMessage setFooter(String footer, String iconUrl);

default EmbeddedMessage setFooter(String footer) {
return setFooter(footer, null);
return setFooter(footer, "");
}
}

0 comments on commit 79b1237

Please sign in to comment.