[indexes] IJP-1365: fixed compaction evaluation in ValueContainerImpl.readFrom()

Likely a mistype: '=' instead of '|='. '=' is inconsistent with other branch logic.

GitOrigin-RevId: e5a2544bd390362e820738109d0f906e95b1e817
This commit is contained in:
Ruslan Cheremin
2024-05-11 15:17:46 +02:00
committed by intellij-monorepo-bot
parent 048618c765
commit b70ef0fea3

View File

@@ -539,7 +539,7 @@ public class ValueContainerImpl<Value> extends UpdatableValueContainer<Value> im
boolean doCompact = false;
if (inputIds instanceof int[]) {
for (int inputId : (int[])inputIds) {
doCompact = removeValue(mapping, inputId);
doCompact |= removeValue(mapping, inputId);
}
}
else {