Skip to content

Commit b227a3a

Browse files
authored
Merge pull request TooTallNate#801 from marci4/master
Fix build errors
2 parents b0583b9 + 27e2675 commit b227a3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/java_websocket/server/DefaultSSLWebSocketServerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public ByteChannel wrapChannel( SocketChannel channel, SelectionKey key ) throws
6868
ciphers.remove("TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256");
6969
e.setEnabledCipherSuites( ciphers.toArray( new String[ciphers.size()] ) );
7070
e.setUseClientMode( false );
71-
return new SSLSocketChannel3( channel, e, exec, key );
71+
return new SSLSocketChannel2( channel, e, exec, key );
7272
}
7373

7474
@Override

0 commit comments

Comments
 (0)