Skip to content

Commit 833a8e2

Browse files
committed
Use getValue
1 parent e91af76 commit 833a8e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

usvm-dataflow-ts/src/main/kotlin/org/usvm/dataflow/ts/infer/TypeInferenceManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ class TypeInferenceManager(
387387
}
388388

389389
for ((method, localFacts) in inferredLocalTypes) {
390-
val facts = refinedTypes[method]!!
390+
val facts = refinedTypes.getValue(method)
391391
refinedTypes[method] = facts.copy(types = facts.types + localFacts)
392392
}
393393
}

0 commit comments

Comments
 (0)