We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c737f6e commit 27420b7Copy full SHA for 27420b7
src/main/java/org/jruby/ext/openssl/SSLContext.java
@@ -618,7 +618,7 @@ public IRubyObject set_ssl_version(IRubyObject method) {
618
return method;
619
}
620
621
- @JRubyMethod(name = "set_minmax_proto_version")
+ @JRubyMethod(name = "set_minmax_proto_version", visibility = Visibility.PRIVATE)
622
public IRubyObject set_minmax_proto_version(ThreadContext context, IRubyObject minVersion, IRubyObject maxVersion) {
623
minProtocolVersion = parseProtoVersion(minVersion);
624
maxProtocolVersion = parseProtoVersion(maxVersion);
0 commit comments