Skip to content

Commit

Permalink
fix(orm): exclude objectClass filter not correclty process substring …
Browse files Browse the repository at this point in the history
…filter

Signed-off-by: Yuriy Movchan <[email protected]>
  • Loading branch information
yurem committed Dec 12, 2024
1 parent 0a37868 commit ebeb43f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ public Filter excludeFilter(Filter genericFilter, Filter... excludeFilters) {

Filter resultFilter = new Filter(type, resultFilters.toArray(new Filter[0]));
resultFilter.setAssertionValue(genericFilter.getAssertionValue());
resultFilter.setSubInitial(genericFilter.getSubInitial());
resultFilter.setSubAny(genericFilter.getSubAny());
resultFilter.setSubFinal(genericFilter.getSubFinal());

return resultFilter;
}
Expand Down

0 comments on commit ebeb43f

Please sign in to comment.