Skip to content

Commit

Permalink
Fixed checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Feb 21, 2021
1 parent c2e174b commit 29725e1
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -40,9 +40,9 @@ private static String getMessage(boolean hyperlinks) {
WorldEditManifest manifest = WorldEditManifest.load();

return "WorldEdit is not installed by running the jar file. Check out the install instructions here: "
+ (hyperlinks ? "<a href=\"" + INSTALL_URL +"\">" + INSTALL_URL + "</a>" : INSTALL_URL)
+ (hyperlinks ? "<a href=\"" + INSTALL_URL + "\">" + INSTALL_URL + "</a>" : INSTALL_URL)
+ "\nFor further help, check out our support Discord at "
+ (hyperlinks ? "<a href=\"" + SUPPORT_URL +"\">" + SUPPORT_URL + "</a>" : SUPPORT_URL)
+ (hyperlinks ? "<a href=\"" + SUPPORT_URL + "\">" + SUPPORT_URL + "</a>" : SUPPORT_URL)
+ "\n\nVersion: "
+ manifest.getWorldEditVersion();
}
Expand Down

0 comments on commit 29725e1

Please sign in to comment.