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 @@ -775,9 +775,9 @@ public static boolean handleCommonErrors(final String exceptionClass,
775
775
776
776
} else if (exceptionClass .equals ("java.lang.UnsupportedClassVersionError" )) {
777
777
listener .statusError ("UnsupportedClassVersionError: A library is using code compiled with an unsupported version of Java." );
778
- err .println ("This version of Processing only supports libraries and JAR files compiled for Java 1.8 or earlier." );
779
- err .println ("A library used by this sketch was compiled for Java 1.9 or later, " );
780
- err .println ("and needs to be recompiled to be compatible with Java 1.8 ." );
778
+ err .println ("This version of Processing only supports libraries and JAR files compiled for Java 17 or earlier." );
779
+ err .println ("A library used by this sketch was compiled for Java 18 or later, " );
780
+ err .println ("and needs to be recompiled to be compatible with Java 17 ." );
781
781
782
782
} else if (exceptionClass .equals ("java.lang.NoSuchMethodError" ) ||
783
783
exceptionClass .equals ("java.lang.NoSuchFieldError" )) {
You can’t perform that action at this time.
0 commit comments