mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
[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:
committed by
intellij-monorepo-bot
parent
048618c765
commit
b70ef0fea3
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user