Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9b5753fb1c82
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 814bb1156506
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 14, 2018

  1. Deprecate Data class

    For more information, please see feature #3072.
    nomadium committed Feb 14, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    nomadium Miguel Landaeta
    Copy the full SHA
    0829ea5 View commit details

Commits on Feb 15, 2018

  1. Merge pull request #5042 from nomadium/deprecate-data-class

    Deprecate Data class
    enebo authored Feb 15, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    814bb11 View commit details
Showing with 1 addition and 0 deletions.
  1. +1 −0 core/src/main/java/org/jruby/Ruby.java
1 change: 1 addition & 0 deletions core/src/main/java/org/jruby/Ruby.java
Original file line number Diff line number Diff line change
@@ -1381,6 +1381,7 @@ public IRubyObject call(ThreadContext context, IRubyObject self, RubyModule claz
private void initCore() {
if (profile.allowClass("Data")) {
defineClass("Data", objectClass, ObjectAllocator.NOT_ALLOCATABLE_ALLOCATOR);
getObject().deprecateConstant(this, "Data");
}

RubyComparable.createComparable(this);