This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git

commit 041c4d49e766f8fa8cc64efe3d4842eaacdb74bd
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu May 30 10:56:47 2024 -0400

    Remove redundant superinterface
---
 .../org/apache/sshd/client/config/keys/ClientIdentitiesWatcher.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/sshd-common/src/main/java/org/apache/sshd/client/config/keys/ClientIdentitiesWatcher.java
 
b/sshd-common/src/main/java/org/apache/sshd/client/config/keys/ClientIdentitiesWatcher.java
index 75c587a16..fc29ca7d5 100644
--- 
a/sshd-common/src/main/java/org/apache/sshd/client/config/keys/ClientIdentitiesWatcher.java
+++ 
b/sshd-common/src/main/java/org/apache/sshd/client/config/keys/ClientIdentitiesWatcher.java
@@ -30,7 +30,6 @@ import java.util.function.Predicate;
 import org.apache.sshd.common.config.keys.FilePasswordProvider;
 import org.apache.sshd.common.config.keys.FilePasswordProviderHolder;
 import org.apache.sshd.common.keyprovider.AbstractKeyPairProvider;
-import org.apache.sshd.common.keyprovider.KeyPairProvider;
 import org.apache.sshd.common.session.SessionContext;
 import org.apache.sshd.common.util.GenericUtils;
 
@@ -39,7 +38,7 @@ import org.apache.sshd.common.util.GenericUtils;
  *
  * @author <a href="mailto:d...@mina.apache.org";>Apache MINA SSHD Project</a>
  */
-public class ClientIdentitiesWatcher extends AbstractKeyPairProvider 
implements KeyPairProvider {
+public class ClientIdentitiesWatcher extends AbstractKeyPairProvider {
     private final Collection<ClientIdentityProvider> providers;
 
     public ClientIdentitiesWatcher(Collection<? extends Path> paths,

Reply via email to