Skip to content

Commit 27420b7

Browse files
committed
[fix] make set_minmax_proto_version private
1 parent c737f6e commit 27420b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jruby/ext/openssl/SSLContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ public IRubyObject set_ssl_version(IRubyObject method) {
618618
return method;
619619
}
620620

621-
@JRubyMethod(name = "set_minmax_proto_version")
621+
@JRubyMethod(name = "set_minmax_proto_version", visibility = Visibility.PRIVATE)
622622
public IRubyObject set_minmax_proto_version(ThreadContext context, IRubyObject minVersion, IRubyObject maxVersion) {
623623
minProtocolVersion = parseProtoVersion(minVersion);
624624
maxProtocolVersion = parseProtoVersion(maxVersion);

0 commit comments

Comments
 (0)