Skip to content

Commit

Permalink
clean unused
Browse files Browse the repository at this point in the history
  • Loading branch information
KannarFr committed Mar 4, 2022
1 parent 56abf7f commit 2719068
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import org.apache.pulsar.client.api.Authentication;
import org.apache.pulsar.client.api.AuthenticationDataProvider;
import org.apache.pulsar.client.api.EncodedAuthenticationParameterSupport;
import org.apache.pulsar.client.api.PulsarClientException;

import java.io.IOException;
import java.net.URI;
Expand All @@ -31,7 +30,7 @@ public AuthenticationBiscuit(Supplier<String> biscuitSupplier) {
}

@Override
public void close() throws IOException {
public void close() {
// noop
}

Expand All @@ -41,7 +40,7 @@ public String getAuthMethodName() {
}

@Override
public AuthenticationDataProvider getAuthData() throws PulsarClientException {
public AuthenticationDataProvider getAuthData() {
return new AuthenticationDataBiscuit(biscuitSupplier);
}

Expand Down Expand Up @@ -72,7 +71,7 @@ public void configure(Map<String, String> authParams) {
}

@Override
public void start() throws PulsarClientException {
public void start() {
// noop
}
}

0 comments on commit 2719068

Please sign in to comment.