James Moger
2014-03-23 1c7917fa526925c672d4e5dd336d5b93aa51e6a5
src/main/java/com/gitblit/transport/ssh/gitblit/ProjectsDispatcher.java
@@ -22,7 +22,7 @@
import com.gitblit.models.UserModel;
import com.gitblit.transport.ssh.commands.CommandMetaData;
import com.gitblit.transport.ssh.commands.DispatchCommand;
import com.gitblit.transport.ssh.commands.ListRegexCommand;
import com.gitblit.transport.ssh.commands.ListFilterCommand;
import com.gitblit.utils.FlipTable;
import com.gitblit.utils.FlipTable.Borders;
@@ -36,7 +36,7 @@
   /* List projects */
   @CommandMetaData(name = "list", aliases= { "ls" }, description = "List projects")
   public static class ListProjects extends ListRegexCommand<ProjectModel> {
   public static class ListProjects extends ListFilterCommand<ProjectModel> {
      @Override
      protected List<ProjectModel> getItems() {
@@ -48,8 +48,8 @@
      }
      @Override
      protected boolean matches(ProjectModel p) {
         return p.name.matches(regexFilter);
      protected boolean matches(String filter, ProjectModel p) {
         return p.name.matches(filter);
      }
      @Override