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 93328a3 commit 73d93f8Copy full SHA for 73d93f8
1 file changed
extractor/src/test/java/org/schabi/newpipe/downloader/DownloaderTestImpl.java
@@ -7,7 +7,6 @@
7
import org.schabi.newpipe.extractor.exceptions.ReCaptchaException;
8
9
import java.io.IOException;
10
-import java.util.Arrays;
11
import java.util.List;
12
import java.util.Map;
13
import java.util.concurrent.TimeUnit;
@@ -35,7 +34,7 @@ private DownloaderTestImpl(final OkHttpClient.Builder builder) {
35
34
// Required for certain services
36
// For example Bandcamp otherwise fails on Windows with Java 17+
37
// as their Fastly-CDN returns 403
38
- .connectionSpecs(Arrays.asList(ConnectionSpec.RESTRICTED_TLS))
+ .connectionSpecs(List.of(ConnectionSpec.RESTRICTED_TLS))
39
.build());
40
}
41
0 commit comments