James Moger
2014-03-16 0d232164930581ccc9eac1b54e4c624a62f107bd
src/main/java/com/gitblit/transport/ssh/SshCommandContext.java
@@ -15,16 +15,24 @@
 */
package com.gitblit.transport.ssh;
import com.gitblit.manager.IGitblit;
public class SshCommandContext {
   private final IGitblit gitblit;
   private final SshDaemonClient client;
   private final String commandLine;
   public SshCommandContext(SshDaemonClient client, String commandLine) {
   public SshCommandContext(IGitblit gitblit, SshDaemonClient client, String commandLine) {
      this.gitblit = gitblit;
      this.client = client;
      this.commandLine = commandLine;
   }
   public IGitblit getGitblit() {
      return gitblit;
   }
   public SshDaemonClient getClient() {
      return client;
   }