There was an error while loading. Please reload this page.
2 parents cef8f74 + 3f8c8be commit ff63bafCopy full SHA for ff63baf
1 file changed
src/main/java/org/kohsuke/github/Requester.java
@@ -25,7 +25,6 @@
25
26
import org.apache.commons.io.IOUtils;
27
28
-import javax.net.ssl.HttpsURLConnection;
29
import java.io.FileNotFoundException;
30
import java.io.IOException;
31
import java.io.InputStream;
@@ -294,7 +293,7 @@ private void findNextURL(HttpURLConnection uc) throws MalformedURLException {
294
293
295
296
private HttpURLConnection setupConnection(URL url) throws IOException {
297
- HttpsURLConnection uc = (HttpsURLConnection) url.openConnection();
+ HttpURLConnection uc = (HttpURLConnection) url.openConnection();
298
299
// if the authentication is needed but no credential is given, try it anyway (so that some calls
300
// that do work with anonymous access in the reduced form should still work.)
0 commit comments