Skip to content

Commit

Permalink
yay no more proc failures
Browse files Browse the repository at this point in the history
  • Loading branch information
enebo committed May 12, 2015
1 parent 2774d78 commit b89e4a8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
6 changes: 0 additions & 6 deletions core/src/main/java/org/jruby/RubyProc.java
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,6 @@ public IRubyObject dup() {
return newProc(getRuntime(), block, type, sourcePosition);
}

@JRubyMethod(name = "==", required = 1)
public IRubyObject op_equal(IRubyObject other) {
return getRuntime().newBoolean(other instanceof RubyProc &&
(this == other || this.block.equals(((RubyProc)other).block)));
}

@Override
public IRubyObject to_s() {
return to_s19();
Expand Down
2 changes: 0 additions & 2 deletions spec/tags/ruby/core/proc/equal_value_tags.txt

This file was deleted.

0 comments on commit b89e4a8

Please sign in to comment.