hmm, through some serialization shenanigans, I've ...
# announcements
g
hmm, through some serialization shenanigans, I've got an instance
t
of something thats declared as
object  Thingy
, that is not equal to
Thingy.INSTANCE
. I could update all my when statements to use
when(it) { is Thingy ->
rather than
when(it) { Thingy ->
, but that seems cryptic.
a