}
@JRubyMethod(name = "load", required = 1, optional = 1, module = true, visibility = PRIVATE, compat = RUBY1_9)
public static IRubyObject load19(ThreadContext context, IRubyObject recv, IRubyObject[] args, Block block) {
IRubyObject file = args[0];
if (!(file instanceof RubyString) && file.respondsTo("to_path")) {
file = file.callMethod(context, "to_path");
}
return loadCommon(file, context.getRuntime(), args, block);
}