Skip to content

Commit

Permalink
val was obviously the wrong keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
ArquintL committed Jan 21, 2025
1 parent 4d2beda commit d6243bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/viper/server/vsi/Terminator.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ object Terminator {
// Without this counter, the issue of non-unique actor names occurs in testing contexts as, e.g. in Gobra's tests,
// we start a new ViperServer instance for each testcase that needs it.
private val terminatorCounter = new AtomicInteger(0)
val GetNextTerminatorName: String = s"terminator${terminatorCounter.getAndIncrement()}"
def GetNextTerminatorName: String = s"terminator${terminatorCounter.getAndIncrement()}"

def props[R](ast_jobs: JobPool[AstJobId, AstHandle[R]],
ver_jobs: JobPool[VerJobId, VerHandle],
Expand Down

0 comments on commit d6243bd

Please sign in to comment.