I'm running into an odd issue where I have a `@Tra...
# announcements
d
I'm running into an odd issue where I have a
@Transient val intView by lazy { ... }
which seems to be producing a NPE about $receiver being null after I deserialize the containing object and try to access the val. Anyone have an idea what might be causing this kind of issue? Is the container object assuming the transient member exists somehow? Is there a solution that doesn't involve manually creating a lazy initializer and backing transient field?