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
jruby 9.2.9.0-SNAPSHOT (2.5.3) 2019-10-14 a8807f2 Java HotSpot(TM) 64-Bit Server VM 25.171-b11 on 1.8.0_171-b11 +jit [mswin32-x86_64]
I discovered simple bug while working on another issue #2639. Below is output from JIRB:
Actual Behavior:
irb(main):001:0> Java::JavaAwt::Desktop::Action => Java::JavaAwt::Desktop::Action irb(main):002:0> Java::JavaAwt::Desktop::Action::Action => Java::JavaAwt::Desktop::Action irb(main):003:0> Java::JavaAwt::Desktop::Action::Action::Action => Java::JavaAwt::Desktop::Action
Expected Behavior:
2nd and 3rd should result with NameError (there is no class java.awt.Desktop.Action.Action.Action). Only 1st case is correct.
NameError
java.awt.Desktop.Action.Action.Action
The text was updated successfully, but these errors were encountered:
fix class nesting jruby#5925
6c9a177
Well that's a weird one! Thanks for the PR!
Sorry, something went wrong.
Merge pull request #5926 from MariuszCwikla/fix-class-nesting
45f15c6
fix class nesting #5925
Successfully merging a pull request may close this issue.
jruby 9.2.9.0-SNAPSHOT (2.5.3) 2019-10-14 a8807f2 Java HotSpot(TM) 64-Bit Server VM 25.171-b11 on 1.8.0_171-b11 +jit [mswin32-x86_64]
I discovered simple bug while working on another issue #2639. Below is output from JIRB:
Actual Behavior:
Expected Behavior:
2nd and 3rd should result with
NameError
(there is no classjava.awt.Desktop.Action.Action.Action
).Only 1st case is correct.
The text was updated successfully, but these errors were encountered: