Skip to content

Commit b2734b5

Browse files
committed
Replace map with forEach
1 parent e1d3c77 commit b2734b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

usvm-ts/src/test/kotlin/org/usvm/util/TsTestResolver.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class TsTestResolver {
8888
}
8989

9090
private fun prepareForResolve(state: TsState) {
91-
state.lValuesToAllocatedFakeObjects.map { (lValue, fakeObject) ->
91+
state.lValuesToAllocatedFakeObjects.forEach { (lValue, fakeObject) ->
9292
when (lValue) {
9393
is UFieldLValue<*, *> -> {
9494
val resolvedRef = state.models.first().eval(lValue.ref)

0 commit comments

Comments
 (0)