[socks5] Remove stale null check

The method getLocalStreamHost() does no longer return 'null', hence
the null check is unnecessary.
This commit is contained in:
Florian Schmaus 2021-09-13 18:25:44 +02:00
parent 09710b3203
commit b57cf8375f
1 changed files with 1 additions and 3 deletions

View File

@ -615,9 +615,7 @@ public final class Socks5BytestreamManager extends Manager implements Bytestream
if (annouceLocalStreamHost) {
// add local proxy on first position if exists
List<StreamHost> localProxies = getLocalStreamHost();
if (localProxies != null) {
streamHosts.addAll(localProxies);
}
streamHosts.addAll(localProxies);
}
// query SOCKS5 proxies for network settings