James Moger
2014-03-23 1c7917fa526925c672d4e5dd336d5b93aa51e6a5
src/main/java/com/gitblit/transport/ssh/gitblit/UsersDispatcher.java
@@ -25,7 +25,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.transport.ssh.commands.SshCommand;
import com.gitblit.utils.FlipTable;
import com.gitblit.utils.FlipTable.Borders;
@@ -96,7 +96,7 @@
   }
   @CommandMetaData(name = "list", aliases= { "ls" }, description = "List users")
   public static class ListUsers extends ListRegexCommand<UserModel> {
   public static class ListUsers extends ListFilterCommand<UserModel> {
      @Override
      protected List<UserModel> getItems() {
@@ -106,8 +106,8 @@
      }
      @Override
      protected boolean matches(UserModel u) {
         return u.username.matches(regexFilter);
      protected boolean matches(String filter, UserModel u) {
         return u.username.matches(filter);
      }
      @Override