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
sun.boot.class.path and java.ext.dirs were removed on JDK 9 and hence using them in (System/getProperty) call will return nil
The boot class path has been mostly removed in this release. The java -Xbootclasspath and -Xbootclasspath/p options have been removed. The javac -bootclaspath option can only be used when compiling to JDK 8 or older. The system property sun.boot.class.path has been removed. Deployments that rely on overriding platform classes for testing purposes with -Xbootclasspath/p will need to changed to use the --patch-module option that is documented in JEP 261. The -Xbootclasspath/a option is unchanged.
The text was updated successfully, but these errors were encountered:
tirkarthi
changed the title
sun.boot.class.path and java.ext.dirs are removed in JDK 9
sun.boot.class.path and java.ext.dirs were removed in JDK 9
Mar 17, 2018
sun.boot.class.path
andjava.ext.dirs
were removed on JDK 9 and hence using them in(System/getProperty)
call will return nilRefer : http://www.oracle.com/technetwork/java/javase/9-relnote-issues-3704069.html
Affected libraries :
clojure-complete - Fixed with ninjudd/clojure-complete#24
The text was updated successfully, but these errors were encountered: