Skip to content

Commit

Permalink
isEmpty
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Feb 26, 2025
1 parent e1eda60 commit 8e5dafa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ protected void renderBody() {
sink.paragraph();
linkPatternedText(getI18nString("scarab.intro"));
sink.paragraph_();
} else if (system == null || "".equals(system.trim())) {
} else if (system == null || system.trim().isEmpty()) {
paragraph(getI18nString("general.intro"));
} else {
paragraph(getI18nString("custom.intro").replaceFirst("%issueManagementSystem%", system));
Expand Down

0 comments on commit 8e5dafa

Please sign in to comment.