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
This does not work. JRuby always tries to unwrap proxied_java_object to the core object even when IRubyObject is needed by itself.
It seems ConcreteJavaProxy#toJava should also check this condition:
It's the jruby's proxy object which wraps some java object. proxied_java_object implements IRubyObject.
And It can't be passed to method which expects IRubyObject param, because jruby first tries to unwrap the target java object out of it and pass it as argument.
jruby 1.7.13
This does not work. JRuby always tries to unwrap
proxied_java_object
to the core object even whenIRubyObject
is needed by itself.It seems ConcreteJavaProxy#toJava should also check this condition:
The text was updated successfully, but these errors were encountered: