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 28d378f2462b07f35dc4df48554be70146292070 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu May 30 14:21:46 2024 -0400 Remove redundant superinterface --- .../src/main/java/org/apache/sshd/client/simple/SimpleClient.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sshd-core/src/main/java/org/apache/sshd/client/simple/SimpleClient.java b/sshd-core/src/main/java/org/apache/sshd/client/simple/SimpleClient.java index 819f6af5f..3c7550a8e 100644 --- a/sshd-core/src/main/java/org/apache/sshd/client/simple/SimpleClient.java +++ b/sshd-core/src/main/java/org/apache/sshd/client/simple/SimpleClient.java @@ -19,8 +19,6 @@ package org.apache.sshd.client.simple; -import java.nio.channels.Channel; - /** * Provides a simplified and <U>synchronous</U> view of the available SSH client functionality. If more fine-grained * control and configuration of the SSH client behavior and features is required then the @@ -29,8 +27,6 @@ import java.nio.channels.Channel; * @author <a href="mailto:d...@mina.apache.org">Apache MINA SSHD Project</a> */ public interface SimpleClient - extends SimpleClientConfigurator, - SimpleSessionClient, - Channel { + extends SimpleSessionClient { // marker interface }