File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ private static final class BuilderImpl implements Builder {
260
260
private int port = 0 ;
261
261
private String username ;
262
262
private String password ;
263
- private Set <String > nonProxyHosts = Collections . emptySet () ;
263
+ private Set <String > nonProxyHosts ;
264
264
private Boolean useSystemPropertyValues = Boolean .TRUE ;
265
265
266
266
private BuilderImpl () {
@@ -271,7 +271,7 @@ private BuilderImpl(ProxyConfiguration proxyConfiguration) {
271
271
this .scheme = proxyConfiguration .scheme ;
272
272
this .host = proxyConfiguration .host ;
273
273
this .port = proxyConfiguration .port ;
274
- this .nonProxyHosts = new HashSet <>( proxyConfiguration .nonProxyHosts ) ;
274
+ this .nonProxyHosts = proxyConfiguration .nonProxyHosts ;
275
275
this .username = proxyConfiguration .username ;
276
276
this .password = proxyConfiguration .password ;
277
277
}
You can’t perform that action at this time.
0 commit comments