Skip to content

Commit 76aac38

Browse files
committed
After merge fixes
1 parent f61fcb6 commit 76aac38

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

common/src/main/java/org/jgroups/ping/common/stream/InsecureStreamProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public boolean verify(String arg0, SSLSession arg1) {
2727
}
2828
};
2929

30-
static final TrustManager[] INSECURE_TRUST_MANAGERS = new TrustManager[] {
30+
public static final TrustManager[] INSECURE_TRUST_MANAGERS = new TrustManager[] {
3131
new X509TrustManager() {
3232
@Override
3333
public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {}

common/src/main/java/org/openshift/ping/common/stream/TokenStreamProvider.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package org.openshift.ping.common.stream;
22

3-
import static org.openshift.ping.common.Utils.openFile;
3+
import static org.jgroups.ping.common.Utils.openFile;
44

55
import java.io.FileNotFoundException;
6-
76
import java.io.IOException;
87
import java.io.InputStream;
98
import java.net.URLConnection;
@@ -20,6 +19,9 @@
2019
import javax.net.ssl.TrustManager;
2120
import javax.net.ssl.TrustManagerFactory;
2221

22+
import org.jgroups.ping.common.stream.BaseStreamProvider;
23+
import org.jgroups.ping.common.stream.InsecureStreamProvider;
24+
2325
/**
2426
* @author <a href="mailto:[email protected]">Ricardo Martinelli</a>
2527
*/

0 commit comments

Comments
 (0)