Skip to content

Commit

Permalink
Fix deprecated varargs splice from Scala 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Jul 26, 2024
1 parent a7b3117 commit e8a4418
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ object Memory {
}

def parse(s: String): Memory = {
Memory(s.split(',').map(_.toLong).toSeq: _*)
Memory(s.split(',').map(_.toLong).toSeq*)
}
}

0 comments on commit e8a4418

Please sign in to comment.