Skip to content

Commit 3ba215d

Browse files
committed
Format
1 parent ab7b43c commit 3ba215d

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

usvm-ts/src/main/kotlin/org/usvm/machine/expr/CallStatic.kt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,11 @@ private fun TsExprResolver.processAmbiguousStaticMethod(
106106
returnSite = scope.calcOnState { lastStmt }
107107
)
108108
}
109-
scope.forkMulti(concreteCalls.map { stmt ->
110-
ctx.mkTrue() to { newStmt(stmt) }
111-
})
109+
scope.forkMulti(
110+
concreteCalls.map { stmt ->
111+
ctx.mkTrue() to { newStmt(stmt) }
112+
}
113+
)
112114
}
113115

114116
private fun TsExprResolver.processUniqueStaticMethod(

usvm-ts/src/main/kotlin/org/usvm/machine/interpreter/TsStatic.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import org.jacodb.ets.model.EtsClassSignature
66
import org.jacodb.ets.model.EtsMethod
77
import org.jacodb.ets.utils.STATIC_INIT_METHOD_NAME
88
import org.usvm.UBoolSort
9-
import org.usvm.UExpr
109
import org.usvm.UHeapRef
1110
import org.usvm.collection.field.UFieldLValue
1211
import org.usvm.isTrue

0 commit comments

Comments
 (0)