src/main/java/com/gitblit/transport/ssh/commands/BaseCommand.java
@@ -120,16 +120,6 @@ this.exit = callback; } protected void provideBaseStateTo(final Command cmd) { if (cmd instanceof BaseCommand) { ((BaseCommand) cmd).setContext(ctx); } cmd.setInputStream(in); cmd.setOutputStream(out); cmd.setErrorStream(err); cmd.setExitCallback(exit); } protected String getName() { return commandName; }