diff --git a/src/main/java/org/jabref/JabRefMain.java b/src/main/java/org/jabref/JabRefMain.java
index 72051540247..7fb3420c945 100644
--- a/src/main/java/org/jabref/JabRefMain.java
+++ b/src/main/java/org/jabref/JabRefMain.java
@@ -4,12 +4,10 @@
import javafx.application.Application;
import javafx.application.Platform;
-import javafx.scene.control.Alert;
import javafx.stage.Stage;
import org.jabref.cli.ArgumentProcessor;
import org.jabref.cli.JabRefCLI;
-import org.jabref.gui.FXDialog;
import org.jabref.gui.remote.JabRefMessageHandler;
import org.jabref.logic.journals.JournalAbbreviationLoader;
import org.jabref.logic.l10n.Localization;
@@ -19,8 +17,6 @@
import org.jabref.logic.protectedterms.ProtectedTermsLoader;
import org.jabref.logic.remote.RemotePreferences;
import org.jabref.logic.remote.client.RemoteClient;
-import org.jabref.logic.util.BuildInfo;
-import org.jabref.logic.util.JavaVersion;
import org.jabref.logic.util.OS;
import org.jabref.migrations.PreferencesMigrations;
import org.jabref.model.database.BibDatabaseMode;
@@ -47,8 +43,6 @@ public static void main(String[] args) {
@Override
public void start(Stage mainStage) throws Exception {
try {
- // Fail on unsupported Java versions
- ensureCorrectJavaVersion();
FallbackExceptionHandler.installExceptionHandler();
// Init preferences
@@ -85,57 +79,12 @@ public void start(Stage mainStage) throws Exception {
Platform.exit();
}
}
-
+
@Override
public void stop() {
Globals.stopBackgroundTasks();
Globals.shutdownThreadPools();
}
-
- /**
- * Tests if we are running an acceptable Java and terminates JabRef when we are sure the version is not supported.
- * This test uses the requirements for the Java version as specified in gradle.build
. It is possible to
- * define a minimum version including the built number and to indicate whether Java 9 can be used (which it currently
- * can't). It tries to compare this version number to the version of the currently running JVM. The check is
- * optimistic and will rather return true even if we could not exactly determine the version.
- *
- * Note: Users with a very old version like 1.6 will not profit from this since class versions are incompatible and
- * JabRef won't even start. Currently, JabRef won't start with Java 9 either, but the warning that it cannot be used
- * with this version is helpful anyway to prevent users to update from an old 1.8 directly to version 9. Additionally,
- * we soon might have a JabRef that does start with Java 9 but is not perfectly compatible. Therefore, we should leave
- * the Java 9 check alive.
- */
- private static void ensureCorrectJavaVersion() {
- // Check if we are running an acceptable version of Java
- final BuildInfo buildInfo = Globals.BUILD_INFO;
- JavaVersion checker = new JavaVersion();
- final boolean java9Fail = !buildInfo.isAllowJava9() && checker.isJava9();
- final boolean versionFail = !checker.isAtLeast(buildInfo.getMinRequiredJavaVersion());
-
- if (java9Fail || versionFail) {
- StringBuilder versionError = new StringBuilder(
- Localization.lang("Your current Java version (%0) is not supported. Please install version %1 or higher.",
- checker.getJavaVersion(),
- buildInfo.getMinRequiredJavaVersion()));
-
- versionError.append("\n");
- versionError.append(Localization.lang("Your Java Runtime Environment is located at %0.", checker.getJavaInstallationDirectory()));
-
- if (!buildInfo.isAllowJava9()) {
- versionError.append("\n");
- versionError.append(Localization.lang("Note that currently, JabRef does not run with Java 9."));
- }
-
- FXDialog alert = new FXDialog(Alert.AlertType.ERROR, Localization.lang("Error"), true);
- alert.setHeaderText(null);
- alert.setContentText(versionError.toString());
-
- // We exit on Java 9 error since this will definitely not work
- if (java9Fail) {
- System.exit(0);
- }
- }
- }
private static boolean handleMultipleAppInstances(String[] args) {
RemotePreferences remotePreferences = Globals.prefs.getRemotePreferences();
diff --git a/src/main/java/org/jabref/logic/l10n/Localization.java b/src/main/java/org/jabref/logic/l10n/Localization.java
index c62a92db221..b17fd41c537 100644
--- a/src/main/java/org/jabref/logic/l10n/Localization.java
+++ b/src/main/java/org/jabref/logic/l10n/Localization.java
@@ -141,7 +141,12 @@ private static HashMap