Merge pull request #10525 from MaineC/bug-fix/JVM_Checker

Fix typo in JVM checker user help.

When checking the JVM we provide the user with help on which environment variable to use to disable the check in case the check fails. Fixing the variable we point the user to - should be JAVA_OPTS
This commit is contained in:
Isabel Drost-Fromm 2015-04-20 19:35:40 +02:00
commit 717d9ec1d0
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public class JVMCheck {
if (workAround != null) {
sb.append(System.lineSeparator());
sb.append("If you absolutely cannot upgrade, please add ").append(workAround);
sb.append(" to the JVM_OPTS environment variable.");
sb.append(" to the JAVA_OPTS environment variable.");
sb.append(System.lineSeparator());
sb.append("Upgrading is preferred, this workaround will result in degraded performance.");
}