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 @@ -454,7 +454,7 @@ public void setSsl(boolean ssl) {
454
454
*/
455
455
public void useSslProtocol () throws NoSuchAlgorithmException {
456
456
this .useSslProtocol (
457
- com .rabbitmq .client .ConnectionFactory .computeDefaultTlsProcotol (
457
+ com .rabbitmq .client .ConnectionFactory .computeDefaultTlsProtocol (
458
458
SSLContext .getDefault ().getSupportedSSLParameters ().getProtocols ()));
459
459
}
460
460
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ public class SslContextIT {
76
76
77
77
private static SSLContext createSslContext () throws NoSuchAlgorithmException {
78
78
String [] protocols = SSLContext .getDefault ().getSupportedSSLParameters ().getProtocols ();
79
- String protocol = com .rabbitmq .client .ConnectionFactory .computeDefaultTlsProcotol (protocols );
79
+ String protocol = com .rabbitmq .client .ConnectionFactory .computeDefaultTlsProtocol (protocols );
80
80
return SSLContext .getInstance (protocol );
81
81
}
82
82
You can’t perform that action at this time.
0 commit comments