Guest User

Untitled

a guest
Jul 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. def getDistinctRoleCampusList() {
  2. def distinctRoleCampusList = []
  3. roleAssignments?.each {
  4. if (it.campus) {
  5. if ( !(it.campus in distinctRoleCampusList) ) {
  6. distinctRoleCampusList.add(it.campus)
  7. }
  8. }
  9. }
  10. return distinctRoleCampusList
Add Comment
Please, Sign In to add comment