From bb8d1a33e365df7a48dfb4238867b31436f600ca Mon Sep 17 00:00:00 2001 From: Martin Spielmann <martin.spielmann@pingunaut.com> Date: Tue, 08 Dec 2015 08:30:11 -0500 Subject: [PATCH] Remove empty catch blocks to stop swallowing exceptions. #498 --- src/test/java/com/gitblit/tests/SshUnitTest.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/com/gitblit/tests/SshUnitTest.java b/src/test/java/com/gitblit/tests/SshUnitTest.java index 43b51b7..27b4ec7 100644 --- a/src/test/java/com/gitblit/tests/SshUnitTest.java +++ b/src/test/java/com/gitblit/tests/SshUnitTest.java @@ -26,10 +26,10 @@ import java.security.PublicKey; import java.util.concurrent.atomic.AtomicBoolean; -import org.apache.sshd.ClientChannel; -import org.apache.sshd.ClientSession; -import org.apache.sshd.SshClient; import org.apache.sshd.client.ServerKeyVerifier; +import org.apache.sshd.client.SshClient; +import org.apache.sshd.client.channel.ClientChannel; +import org.apache.sshd.client.session.ClientSession; import org.apache.sshd.common.util.SecurityUtils; import org.junit.After; import org.junit.AfterClass; -- Gitblit v1.9.1