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 f3361a4 commit 22a8a86Copy full SHA for 22a8a86
src/org/jgroups/util/TLS.java
@@ -8,8 +8,6 @@
8
import javax.net.ssl.SSLContext;
9
import javax.net.ssl.SSLParameters;
10
import javax.net.ssl.SSLServerSocket;
11
-import java.io.File;
12
-import java.io.FileNotFoundException;
13
import java.util.ArrayList;
14
import java.util.List;
15
@@ -120,11 +118,6 @@ public void init() throws Exception {
120
118
truststore_type=keystore_type;
121
119
truststore_password=keystore_password;
122
}
123
- if(keystore_path != null) {
124
- File tmp=new File(keystore_path);
125
- if(!tmp.exists())
126
- throw new FileNotFoundException(keystore_path);
127
- }
128
129
130
public SSLContext createContext() {
0 commit comments