Skip to content

Commit

Permalink
RepoAssignmentListProvider: Do not hide deleted items
Browse files Browse the repository at this point in the history
Signed-off-by: Tony Tkacik <tonydamage@gmail.com>
  • Loading branch information
tonydamage committed Jul 6, 2022
1 parent 58e3d87 commit 0cd73dc
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,6 @@ protected PrismContainerValueWrapper<AssignmentType> createWrapper(AssignmentTyp
OperationResult result) throws SchemaException {
for (PrismContainerValueWrapper<AssignmentType> item : model.getObject()) {
if (Objects.equals(item.getRealValue().getId(),object.getId())) {
if (ValueStatus.DELETED == item.getStatus()) {
return null;
}
postProcessWrapper(item);
return item;
}
Expand Down

0 comments on commit 0cd73dc

Please sign in to comment.