Minor: add a TODO to Kryo.kt about lazy properties.

This commit is contained in:
Mike Hearn 2016-02-12 15:41:36 +01:00
parent ea18e239d9
commit a42d7e64ef

View File

@ -213,5 +213,7 @@ fun createKryo(k: Kryo = Kryo()): Kryo {
immutables.forEach {
register(it.java, ImmutableClassSerializer(it))
}
// TODO: See if we can make Lazy<T> serialize properly so we can use "by lazy" in serialized object.
}
}