Skip to content

Commit 62b5239

Browse files
authored
Merge pull request #1127 from camunda/backport-1124-to-1.20
[Backport 1.20] fix: binary breaking change in ValList object
2 parents 987a94c + 3faf8db commit 62b5239

File tree

1 file changed

+1
-1
lines changed
  • src/main/scala/org/camunda/feel/syntaxtree

1 file changed

+1
-1
lines changed

src/main/scala/org/camunda/feel/syntaxtree/Val.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ case class ValList(itemsAsSeq: Seq[Val]) extends Val {
323323
def copy(items: List[Val]): ValList = new ValList(items)
324324
}
325325

326-
object ValList {
326+
object ValList extends (List[Val] => ValList) {
327327
def apply(items: List[Val]): ValList = new ValList(items)
328328
def apply(items: Seq[Val]): ValList = new ValList(items)
329329
}

0 commit comments

Comments
 (0)