Java: adapt stub to ExecutorService change in JDK19

This commit is contained in:
Chris Smowton
2023-10-05 11:40:31 +01:00
parent 8f985e0045
commit 7fbba3a659

View File

@@ -9,4 +9,6 @@ import org.apache.sshd.common.Closeable;
public interface CloseableExecutorService extends Closeable, ExecutorService
{
default boolean awaitTermination(Duration p0){ return false; }
default void close() { }
}