James Moger
2014-03-14 a8dd379bc357c64d1128bc6790e681e27387dbee
src/main/java/com/gitblit/transport/ssh/SshContext.java
@@ -17,16 +17,16 @@
public class SshContext {
   private final SshSession session;
   private final SshDaemonClient client;
   private final String commandLine;
   public SshContext(SshSession session, String commandLine) {
      this.session = session;
   public SshContext(SshDaemonClient client, String commandLine) {
      this.client = client;
      this.commandLine = commandLine;
   }
   public SshSession getSession() {
      return session;
   public SshDaemonClient getClient() {
      return client;
   }
   public String getCommandLine() {