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
Calls to static interface methods compile on Java 8 but not on Java 9 because of a new bytecode restrictrion.
publicinterfaceJDK8InterfaceMethods {
// cannot call either of these from ClojurepublicstaticlongstaticMethod0(longv) { returnv; }
publicstaticStringstaticMethod1(Strings) { returns; }
}