Skip to content

Commit

Permalink
MID-9278 always use equals, more bugfixing
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Nov 15, 2023
1 parent e3d8772 commit d80cd75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,7 @@ private boolean isOperationalOnly(Item item, ItemDefinition itemDef) {
if (subItemDef == null) {
return false;
}
if (!subItemDef.isOperational()) {
if (!subItemDef.isOperational() || subItemDef.isAlwaysUseForEquals()) {
return false;
}
}
Expand Down

0 comments on commit d80cd75

Please sign in to comment.