You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!"".equals(tokenUrl) && !URI.create(tokenUrl).isAbsolute()) {
Here "".equals(tokenUrl) evaluates to true.
Then, !"".equals(tokenUrl) is always false.
An ever-false value which is ANDed with anything else will always result in false.
Hence, the code in the if block is dead code (and can never be reached).
The text was updated successfully, but these errors were encountered:
eve-esi/src/main/java/net/troja/eve/esi/ApiClient.java
Line 131 in f29725b
declares a variable called
tokenUrl
and initializes it with the empty string.The next if condition uses this variable by
eve-esi/src/main/java/net/troja/eve/esi/ApiClient.java
Line 132 in f29725b
Here
"".equals(tokenUrl)
evaluates totrue
.Then,
!"".equals(tokenUrl)
is alwaysfalse
.An ever-false value which is ANDed with anything else will always result in
false
.Hence, the code in the
if
block is dead code (and can never be reached).The text was updated successfully, but these errors were encountered: