James Moger
2014-03-14 fea7c52e9584ff117be8529b431b40590deef0ca
src/main/java/com/gitblit/transport/ssh/SshCommandContext.java
File was renamed from src/main/java/com/gitblit/transport/ssh/SshContext.java
@@ -15,12 +15,12 @@
 */
package com.gitblit.transport.ssh;
public class SshContext {
public class SshCommandContext {
   private final SshDaemonClient client;
   private final String commandLine;
   public SshContext(SshDaemonClient client, String commandLine) {
   public SshCommandContext(SshDaemonClient client, String commandLine) {
      this.client = client;
      this.commandLine = commandLine;
   }