Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
emnigma committed Sep 20, 2023
1 parent 7d6170c commit 9fa2921
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,11 @@ open class BlockGraphPathSelector<State : UState<*, Method, Statement, *, *, Sta
protected val states: MutableList<State> = mutableListOf()
private val visitedStatements = HashSet<Statement>()

private val filepath = Path(MainConfig.dataPath, "jsons").toString()
private val filename: String

protected val blockGraph: BlockGraph<Method, Statement>

init {
File(filepath).mkdirs()
val method = applicationGraph.methodOf(coverageStatistics.getUncoveredStatements().first())
filename = method.toString().dropWhile { it != ')' }.drop(1)
blockGraph = BlockGraph(applicationGraph.entryPoints(method).first(), applicationGraph)
Expand Down

0 comments on commit 9fa2921

Please sign in to comment.