Skip to content

Commit

Permalink
Add line break in java warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
hinerm committed Nov 21, 2024
1 parent 5843b28 commit 66f70f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/scijava/launcher/Java.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public static void check() throws IOException {
"It appears there is a good-enough version of Java already installed at " + good +
", which is " + (isBelowMinimum() ? "strongly" : "") + "recommended to use instead.";
String message =
warnAboutOldJavaVersion +
warnAboutOldJavaVersion + "<br>" +
informAboutExistingGoodVersion +
(isBelowMinimum() ? appMightCrash : "") +
questionPrompt;
Expand Down

0 comments on commit 66f70f4

Please sign in to comment.