Steven Jeuris
Results
102
comments of
Steven Jeuris
trafficstars
Ran into this as well. As a workaround I currently apply a [`NotSerializable` dummy serializer](https://github.com/cph-cachet/carp.core-kotlin/blob/develop/carp.common/src/commonMain/kotlin/dk/cachet/carp/common/serialization/NotSerializable.kt) to the type parameters. > A dummy serializer which can be applied to types that...
A `@NeverSerialized` annotation would be more clear, which behind the scenes applies a `NotSerializable` serializer like I do manually now. `Serializable with NotSerializable` just looks weird :), but works. I...