Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/jruby/RubyKernel.java
Original file line number Diff line number Diff line change
@@ -600,12 +600,12 @@ public static IRubyObject readlines(ThreadContext context, IRubyObject recv, IRu
return RubyArgsFile.readlines(context, context.runtime.getArgsFile(), args);
}

@JRubyMethod(name = "respond_to_missing?", module = true, visibility = PRIVATE)
@JRubyMethod(name = "respond_to_missing?", visibility = PRIVATE)
public static IRubyObject respond_to_missing_p(ThreadContext context, IRubyObject recv, IRubyObject symbol) {
return context.runtime.getFalse();
}

@JRubyMethod(name = "respond_to_missing?", module = true, visibility = PRIVATE)
@JRubyMethod(name = "respond_to_missing?", visibility = PRIVATE)
public static IRubyObject respond_to_missing_p(ThreadContext context, IRubyObject recv, IRubyObject symbol, IRubyObject isPrivate) {
return context.runtime.getFalse();
}

0 comments on commit 6e60a21

Please sign in to comment.