diff --git a/src/dorkbox/network/rmi/messages/ContinuationSerializer.kt b/src/dorkbox/network/rmi/messages/ContinuationSerializer.kt index 9131ef6a..8a911bb8 100644 --- a/src/dorkbox/network/rmi/messages/ContinuationSerializer.kt +++ b/src/dorkbox/network/rmi/messages/ContinuationSerializer.kt @@ -28,8 +28,8 @@ class ContinuationSerializer() : Serializer>() { override fun write(kryo: Kryo, output: Output, response: Continuation<*>) { - // nothing to write, because we DO NOT transfer the continuation object. The remote side (side where the object lives) - // uses it's continuation object from the call stack + // nothing to write, because we DO NOT transfer the continuation object. + // The remote side (side where the object lives) uses the continuation object from the call stack instead. } override fun read(kryo: Kryo, input: Input, type: Class>): Continuation<*>? {