Missed one print statement!

This commit is contained in:
kohlerpop1
2024-01-15 12:32:31 -05:00
parent 6bfa0b7745
commit 9da96b4417

View File

@@ -99,7 +99,6 @@ public class HttpProxyClient extends HttpClient
try {
Proxy proxy = new Proxy(Proxy.Type.SOCKS, proxySettings.next().toSocketAddress());
System.err.println("Connecting to "+ url);
HttpsURLConnection socksConnection = (HttpsURLConnection) url.openConnection(proxy);
socksConnection.setSSLSocketFactory(sc.getSocketFactory());
socksConnection.setConnectTimeout(httpClientSettings.getTimeout().toMillisPart());