From 99b43dffe86b635e97f625157083cee37ee921bf Mon Sep 17 00:00:00 2001 From: peto268 <peto268@gmail.com> Date: Thu, 08 May 2014 13:40:41 -0400 Subject: [PATCH] Added option to disable deleting of non empty repositories through the user interface --- src/main/java/com/gitblit/transport/ssh/SshKey.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/gitblit/transport/ssh/SshKey.java b/src/main/java/com/gitblit/transport/ssh/SshKey.java index c2fc91c..ab44854 100644 --- a/src/main/java/com/gitblit/transport/ssh/SshKey.java +++ b/src/main/java/com/gitblit/transport/ssh/SshKey.java @@ -72,7 +72,7 @@ try { publicKey = new Buffer(bin).getRawPublicKey(); } catch (SshException e) { - e.printStackTrace(); + throw new RuntimeException(e); } } return publicKey; -- Gitblit v1.9.1