fix DataFlowInfo.or

This commit is contained in:
Alexander Udalov
2012-06-15 15:04:10 +04:00
parent d454086f28
commit b2c42f4cc9
@@ -181,7 +181,7 @@ public class DataFlowInfo {
ListMultimap<DataFlowValue, JetType> newTypeInfo = Multimaps.newListMultimap(Maps.<DataFlowValue, Collection<JetType>>newHashMap(), CommonSuppliers.<JetType>getArrayListSupplier());
Set<DataFlowValue> keys = newTypeInfo.keySet();
Set<DataFlowValue> keys = typeInfo.keySet();
keys.retainAll(other.typeInfo.keySet());
for (DataFlowValue key : keys) {