-
-
Notifications
You must be signed in to change notification settings - Fork 921
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ambiguous method warnings in core_ext/object.rb in 9k #2104
Comments
Just a drive-by (meaning I am not looking into this) comment is that in Java 8 some default methods on interfaces are the cause of this. I think some of our internal libraries need to be tweaked to account for these new signatures. You can run on Java 7 to confirm this is the cause (e.g. you should not see the warnings). |
Getting same warning while executing 'rails s puma' in development mode and server is getting stuck. And it works perfectly fine with JRuby 1.7. file:/home/krunal/.rvm/rubies/jruby-head/lib/jruby.jar!/jruby/java/core_ext/object.rb:27 warning: ambiguous Java methods found, using isJavaIdentifierStart(int) java -version |
Ok I did not expect this to be an issue with 1.7. The the interface methods are a general cause of this but it must not be this specific issue. |
Err Java 1.7 not JRuby 1.7 :) Numbers...what can you do? |
has been fixed since ... along the lines of 1.7.x releases |
When I run jruby-head I get these warnings (I get it
whenever a JRuby process starts upwhen I run tests withrspec
and when I runbundle
):Looks like it's this method:
jruby/core/src/main/ruby/jruby/java/core_ext/object.rb
Line 27 in 01d560c
The text was updated successfully, but these errors were encountered: