]> source.dussan.org Git - gitblit.git/commitdiff
[findbugs] Fix throws signature
authorJames Moger <james.moger@gitblit.com>
Fri, 18 Apr 2014 00:06:28 +0000 (20:06 -0400)
committerJames Moger <james.moger@gitblit.com>
Fri, 18 Apr 2014 03:07:33 +0000 (23:07 -0400)
src/main/java/com/gitblit/transport/ssh/commands/SshCommand.java

index 7385022e87a2d694f3b2d7bbb83f2b912f053dde..f18b99bc2dd67d7dd1c21aaf0bfcd3bf359a6061 100644 (file)
@@ -85,5 +85,5 @@ public abstract class SshCommand extends BaseCommand {
                }
        }
 
-       protected abstract void run() throws UnloggedFailure, Failure, Exception;
+       protected abstract void run() throws Failure, Exception;
 }