Skip to content

Commit

Permalink
Null assertion -> elvis
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Dec 2, 2024
1 parent 0fd5bbe commit 67d92c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ private fun postTraceGenerationLogging(
"Writing post-verification artifacts to directory ${resultFolder.absolutePath}\n",
)

val modelName = config.inputConfig.input!!.name
val modelName = config.inputConfig.input?.name ?: "anonymous"
val graph = AbstractTraceSummaryVisualizer.visualize(abstractSummary)
val visFile =
resultFolder.absolutePath + File.separator + modelName + ".abstract-trace-summary.png"
Expand Down

0 comments on commit 67d92c0

Please sign in to comment.