James Moger
2012-12-05 d63157b22bb8a7294080be29ca0fca8ecda96db9
src/com/gitblit/client/RegistrantPermissionsTableModel.java
@@ -91,7 +91,7 @@
      if (columnIndex == Columns.Permission.ordinal()) {
         return AccessPermission.class;
      } else if (columnIndex == Columns.Type.ordinal()) {
         return Boolean.class;
         return RegistrantAccessPermission.class;
      }
      return String.class;
   }
@@ -104,7 +104,7 @@
         // and therefore can not be directly manipulated unless the current
         // object is the source of the regex (i.e. a user or team with explicit
         // regex definition)
         return permissions.get(rowIndex).isEditable;
         return permissions.get(rowIndex).mutable;
      }
      return false;
   }
@@ -117,7 +117,7 @@
      case Registrant:
         return rp.registrant;
      case Type:
         return rp.permissionType;
         return rp;
      case Permission:
         return rp.permission;
      }