Skip to content

Commit 323d228

Browse files
committed
Make EnumValue inherit Serializable
1 parent 67f0786 commit 323d228

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/scala/EnumValue.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package scala
22

3-
trait EnumValue extends Product:
3+
trait EnumValue extends Product, Serializable:
44
override def canEqual(that: Any) = true
55
override def productArity: Int = 0
66
override def productPrefix: String = toString

0 commit comments

Comments
 (0)