Skip to content

Commit

Permalink
Possible fix for MID-3194: Items Claimable by Me - Internal 500
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Jun 18, 2016
1 parent 7639aae commit c45a9b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -165,7 +165,7 @@ public List<PrismReferenceValue> getGroupsForUser(String oid, OperationResult re
for (AssignmentType assignmentType : userType.getAssignment()) {
ObjectReferenceType ref = assignmentType.getTargetRef();
if (ref != null) {
retval.add(ref.asReferenceValue());
retval.add(ref.clone().asReferenceValue());
}
}
return retval;
Expand Down
Expand Up @@ -974,7 +974,7 @@ public <T extends Containerable> Integer countContainers(
// for (AssignmentType assignmentType : user.getAssignment()) {
// ObjectReferenceType ref = assignmentType.getTargetRef();
// if (ref != null) {
// retval.add(ref.asReferenceValue());
// retval.add(ref.clone().asReferenceValue());
// }
// }
// return retval;
Expand Down

0 comments on commit c45a9b5

Please sign in to comment.