File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
main/java/com/rabbitmq/jms/admin
test/java/com/rabbitmq/integration/tests Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ public void setSsl(boolean ssl) {
512
512
*/
513
513
public void useSslProtocol () throws NoSuchAlgorithmException {
514
514
this .useSslProtocol (
515
- com .rabbitmq .client .ConnectionFactory .computeDefaultTlsProcotol (
515
+ com .rabbitmq .client .ConnectionFactory .computeDefaultTlsProtocol (
516
516
SSLContext .getDefault ().getSupportedSSLParameters ().getProtocols ()));
517
517
}
518
518
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public class SslContextIT {
77
77
78
78
private static SSLContext createSslContext () throws NoSuchAlgorithmException {
79
79
String [] protocols = SSLContext .getDefault ().getSupportedSSLParameters ().getProtocols ();
80
- String protocol = com .rabbitmq .client .ConnectionFactory .computeDefaultTlsProcotol (protocols );
80
+ String protocol = com .rabbitmq .client .ConnectionFactory .computeDefaultTlsProtocol (protocols );
81
81
return SSLContext .getInstance (protocol );
82
82
}
83
83
You can’t perform that action at this time.
0 commit comments