mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
[socks5] Remove stale null check
The method getLocalStreamHost() does no longer return 'null', hence the null check is unnecessary.
This commit is contained in:
parent
09710b3203
commit
b57cf8375f
1 changed files with 1 additions and 3 deletions
|
@ -615,10 +615,8 @@ 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);
|
||||
}
|
||||
}
|
||||
|
||||
// query SOCKS5 proxies for network settings
|
||||
for (Jid proxy : proxies) {
|
||||
|
|
Loading…
Reference in a new issue