From 3cb81db655e884b911c9c5cb367d51e37681fdc3 Mon Sep 17 00:00:00 2001 From: eskimo Date: Sat, 9 Jul 2022 19:43:21 +0200 Subject: [PATCH] code quality --- src/main/java/ch/niceideas/eskimo/model/SSHConnection.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/ch/niceideas/eskimo/model/SSHConnection.java b/src/main/java/ch/niceideas/eskimo/model/SSHConnection.java index d48019f2..62304c5e 100644 --- a/src/main/java/ch/niceideas/eskimo/model/SSHConnection.java +++ b/src/main/java/ch/niceideas/eskimo/model/SSHConnection.java @@ -76,6 +76,7 @@ public int getReadTimeout() { return readTimeout; } + @Deprecated public boolean authenticateWithDSA(String user, String pem, String password) throws IOException { return under.authenticateWithDSA(user, pem, password); } @@ -240,6 +241,7 @@ public void setSecureRandom(SecureRandom rnd) { under.setSecureRandom(rnd); } + @Deprecated public void enableDebugging(boolean enable, DebugLogger logger) { under.enableDebugging(enable, logger); }