Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/runtime/CallSite.java
Original file line number Diff line number Diff line change
@@ -202,7 +202,7 @@ public CallSite(String methodName, CallType callType) {
* @param block the block argument to pass
* @return the result of the call
*/
public abstract IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg0, IRubyObject arg1, IRubyObject arg3, Block block);
public abstract IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block);

/**
* Call the site's method against the target object passing one argument and

0 comments on commit 1f53471

Please sign in to comment.