Skip to content

Commit

Permalink
Merge pull request #1342 from /issues/1341-coverity-useless-call
Browse files Browse the repository at this point in the history
Fix #1341: Coverity: Useless call
  • Loading branch information
banterCZ authored Feb 26, 2024
2 parents 177fb74 + a0f632f commit 6564091
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import com.wultra.security.powerauth.client.model.error.PowerAuthClientException;
import com.wultra.security.powerauth.client.model.error.PowerAuthError;
import com.wultra.security.powerauth.client.model.request.fido2.*;
import com.wultra.security.powerauth.client.model.response.InitActivationResponse;
import com.wultra.security.powerauth.client.model.response.fido2.*;
import io.getlime.core.rest.model.base.request.ObjectRequest;
import io.getlime.core.rest.model.base.response.ObjectResponse;
Expand Down Expand Up @@ -84,7 +83,6 @@ public PowerAuthFido2RestClient(String baseUrl, PowerAuthRestClientConfiguration
if (config.getProxyUsername() != null) {
proxyBuilder.username(config.getProxyUsername()).password(config.getProxyPassword());
}
proxyBuilder.build();
}
if (config.getPowerAuthClientToken() != null) {
builder.httpBasicAuth().username(config.getPowerAuthClientToken()).password(config.getPowerAuthClientSecret()).build();
Expand Down

0 comments on commit 6564091

Please sign in to comment.