-
-
Notifications
You must be signed in to change notification settings - Fork 925
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* jruby-1_7: spec how non-public inner classes currently behave on the Ruby constant level (#933) delegate java_send with 1-3 args.length to overloaded versions - less array mangling [find-bugs] do no ask for getMethodsForWrite() twice esp. since its synchronized [find-bugs] avoid potentially creating the same File instance twice [find-bugs] avoid unnecessary calling getRuntime() and getCurrentContext() twice [find-bugs] use local map instead of calling the same method again in ScriptingContainer [find-bugs] avoid calling same method twice - keep module.getClass(Type) locally [find-bugs] avoid string concatenation while using a StringBuilder + guess size [find-bugs] avoid using a ternary operator to cast a boolean to true/false [find-bugs] inefficient string buffering - avoid passing concatenating string to builder [find-bugs] inner private classes can be made static [find-bugs] equalsIgnoreCase with "" (empty string) passed [find-bugs] avoid some String instances of length == 1 in favor of chars [find-bugs] use System.arraycopy instead of manual array-copy (of stack-traces) [find-bugs] (private) inner classes that can be mate static Fix java_implements for multiple interfaces Remove redundant test-jruby-jars (complete tests same stuff). Fix jruby versions in antlib/extra.xml. [build] use yecht-1.1-SNAPSHOT Update to jnr-ffi-2.0.4-SNAPSHOT for #3258. Conflicts: .travis.yml antlib/extra.xml core/pom.xml core/src/main/java/org/jruby/Ruby.java core/src/main/java/org/jruby/RubyClassPathVariable.java core/src/main/java/org/jruby/RubyDir.java core/src/main/java/org/jruby/RubyModule.java core/src/main/java/org/jruby/RubyProc.java core/src/main/java/org/jruby/java/proxies/JavaProxy.java core/src/main/java/org/jruby/javasupport/JavaSupport.java core/src/main/java/org/jruby/runtime/ThreadContext.java lib/ruby/shared/jruby/compiler/java_class.rb spec/java_integration/jrubyc/java/implements_spec.rb spec/java_integration/types/retrieval_spec.rb
- 9.4.12.0
- 9.4.11.0
- 9.4.10.0
- 9.4.9.0
- 9.4.8.0
- 9.4.7.0
- 9.4.6.0
- 9.4.5.0
- 9.4.4.0
- 9.4.3.0
- 9.4.2.0
- 9.4.1.0
- 9.4.0.0
- 9.3.15.0
- 9.3.14.0
- 9.3.13.0
- 9.3.12.0
- 9.3.11.0
- 9.3.10.0
- 9.3.9.0
- 9.3.8.0
- 9.3.7.0
- 9.3.6.0
- 9.3.5.0
- 9.3.4.0
- 9.3.3.0
- 9.3.2.0
- 9.3.1.0
- 9.3.0.0
- 9.2.21.0
- 9.2.20.1
- 9.2.20.0
- 9.2.19.0
- 9.2.18.0
- 9.2.17.0
- 9.2.16.0
- 9.2.15.0
- 9.2.14.0
- 9.2.13.0
- 9.2.12.0
- 9.2.11.1
- 9.2.11.0
- 9.2.10.0
- 9.2.9.0
- 9.2.8.0
- 9.2.7.0
- 9.2.6.0
- 9.2.5.0
- 9.2.4.1
- 9.2.4.0
- 9.2.3.0
- 9.2.2.0
- 9.2.1.0
- 9.2.0.0
- 9.1.17.0
- 9.1.16.0
- 9.1.15.0
- 9.1.14.0
- 9.1.13.0
- 9.1.12.0
- 9.1.11.0
- 9.1.10.0
- 9.1.9.0
- 9.1.8.0
- 9.1.7.0
- 9.1.6.0
- 9.1.5.0
- 9.1.4.0
- 9.1.3.0
- 9.1.2.0
- 9.1.1.0
- 9.1.0.0
- 9.0.5.0
- 9.0.4.0
- 9.0.3.0
Showing
4 changed files
with
33 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters