You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewIOException(s"class file '${classfile}' has wrong magic number 0x${toHexString(magic)}, should be 0x${toHexString(JAVA_MAGIC)}")
@@ -66,9 +88,7 @@ object ClassfileParser {
66
88
(minorVersion <JAVA_MINOR_VERSION)))
67
89
thrownewIOException(
68
90
s"class file '${classfile}' has unknown version $majorVersion.$minorVersion, should be at least $JAVA_MAJOR_VERSION.$JAVA_MINOR_VERSION")
69
-
if majorVersion >JAVA_LATEST_MAJOR_VERSIONthen
70
-
thrownewIOException(
71
-
s"class file '${classfile}' has unknown version $majorVersion.$minorVersion, and was compiled by a newer JDK than supported by this Scala version, please update to a newer Scala version.")
0 commit comments