Skip to content

Commit

Permalink
dont use a template function for this
Browse files Browse the repository at this point in the history
  • Loading branch information
spullara committed Feb 26, 2024
1 parent 9896a26 commit 2342f36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static class I18N {
return "";
};
String defaultText;
TemplateFunction t = content -> {
Function<String, String> t = content -> {
defaultText = content;
return "";
};
Expand Down

0 comments on commit 2342f36

Please sign in to comment.