Skip to content

Commit

Permalink
reset cache when changing qualifier of display group
Browse files Browse the repository at this point in the history
  • Loading branch information
darkv committed Mar 8, 2017
1 parent 11007dd commit 957104a
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,13 @@ public Object fetch() {
return result;
}

@Override
public void setQualifier(EOQualifier qualifier) {
super.setQualifier(qualifier);
// flush cache
_filteredObjects = null;
}

/**
* Returns all objects, filtered by the qualifier().
* @return filtered objects
Expand Down

0 comments on commit 957104a

Please sign in to comment.