File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
java/src/processing/mode/java/runner Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -766,9 +766,9 @@ public static boolean handleCommonErrors(final String exceptionClass,
766766
767767 } else if (exceptionClass .equals ("java.lang.UnsupportedClassVersionError" )) {
768768 listener .statusError ("UnsupportedClassVersionError: A library is using code compiled with an unsupported version of Java." );
769- err .println ("This version of Processing only supports libraries and JAR files compiled for Java 1.6 or earlier." );
770- err .println ("A library used by this sketch was compiled for Java 1.7 or later, " );
771- err .println ("and needs to be recompiled to be compatible with Java 1.6 ." );
769+ err .println ("This version of Processing only supports libraries and JAR files compiled for Java 1.8 or earlier." );
770+ err .println ("A library used by this sketch was compiled for Java 1.9 or later, " );
771+ err .println ("and needs to be recompiled to be compatible with Java 1.8 ." );
772772
773773 } else if (exceptionClass .equals ("java.lang.NoSuchMethodError" ) ||
774774 exceptionClass .equals ("java.lang.NoSuchFieldError" )) {
You can’t perform that action at this time.
0 commit comments