Adds a better placeholder for two methods.
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@4282 8810af33-2d31-482b-a856-94f89814c4dfpull/2/head
parent
7cb537b368
commit
faa98453e3
|
|
@ -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<>());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue