Skip to content

Commit 66f70f4

Browse files
committed
Add line break in java warning message
1 parent 5843b28 commit 66f70f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/scijava/launcher/Java.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public static void check() throws IOException {
104104
"It appears there is a good-enough version of Java already installed at " + good +
105105
", which is " + (isBelowMinimum() ? "strongly" : "") + "recommended to use instead.";
106106
String message =
107-
warnAboutOldJavaVersion +
107+
warnAboutOldJavaVersion + "<br>" +
108108
informAboutExistingGoodVersion +
109109
(isBelowMinimum() ? appMightCrash : "") +
110110
questionPrompt;

0 commit comments

Comments
 (0)