Skip to content

Commit

Permalink
Make minor wording tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Oct 21, 2024
1 parent 68ba90f commit 11dcb71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main/java/org/scijava/launcher/Java.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public static void check() throws IOException {
if (!isBelowRecommended()) return; // The running Java version is all good! \^_^/
String appName = ClassLauncher.appName("the application");
String warnAboutOldJavaVersion =
"The Java version currently in use is below the " +
"The Java version currently in use, " + currentVersion() +
", is below the " +
(isBelowMinimum() ?
"<strong>required</strong> minimum of " + minimumVersion() :
"recommended minimum of " + recommendedVersion()) +
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/scijava/launcher/Splash.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static void show(String logoPath) {

window.setVisible(true);

// Watch for other windows; kill the splash window when one shows up.
// Kill the splash window when any other window shows up.
Thread thread = new Thread(() -> {
while (true) {
try {
Expand Down

0 comments on commit 11dcb71

Please sign in to comment.