Adds a better placeholder for two methods.

git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4282 8810af33-2d31-482b-a856-94f89814c4df
pull/2/head
baka 2016-09-05 15:02:46 +00:00
parent 7cb537b368
commit faa98453e3
1 changed files with 4 additions and 2 deletions

View File

@ -46,6 +46,8 @@ import org.libreccm.security.Role;
import org.libreccm.security.RoleRepository; import org.libreccm.security.RoleRepository;
import org.librecms.contentsection.ContentSection; import org.librecms.contentsection.ContentSection;
import java.util.ArrayList;
/** /**
* TODO Needs description * TODO Needs description
* *
@ -179,7 +181,7 @@ public class RoleAdminPane extends BaseAdminPane {
//return new RoleListModel //return new RoleListModel
// (section.getStaffGroup().getOrderedRoles()); FIXME // (section.getStaffGroup().getOrderedRoles()); FIXME
return null; return new RoleListModel(new ArrayList<>());
} }
} }
@ -192,7 +194,7 @@ public class RoleAdminPane extends BaseAdminPane {
//return new RoleListModel //return new RoleListModel
// (section.getViewersGroup().getOrderedRoles()); FIXME // (section.getViewersGroup().getOrderedRoles()); FIXME
return null; return new RoleListModel(new ArrayList<>());
} }
} }