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
java.lang.NullPointerException
at java.util.Collections$UnmodifiableMap.<init>(Unknown Source)
at java.util.Collections.unmodifiableMap(Unknown Source)
at org.codehaus.groovy.control.CompilerConfiguration$1.getJointCompilationOptions(CompilerConfiguration.java:147)
at org.codehaus.groovy.control.CompilerConfiguration.<init>(CompilerConfiguration.java:481)
at groovy.util.GroovyScriptEngine.<init>(GroovyScriptEngine.java:96)
at groovy.util.GroovyScriptEngine.<init>(GroovyScriptEngine.java:495)
at groovy.util.GroovyScriptEngine.<init>(GroovyScriptEngine.java:503)
The problem is that CompilerConfiguration.DEFAULT.getJointCompilationOptions() wants to create an unmodifiable map with null (jointCompilationOptions is always null at this point).
The error is included since commit b03ff24c8f43088b6edadb1adcf17f7a945d6563.
The following code results in a NullPointerException:
Here is the stack trace:
The problem is that
CompilerConfiguration.DEFAULT.getJointCompilationOptions()
wants to create an unmodifiable map withnull
(jointCompilationOptions
is alwaysnull
at this point).The error is included since commit b03ff24c8f43088b6edadb1adcf17f7a945d6563.
Here is an easier way to reproduce:
The text was updated successfully, but these errors were encountered: