From b3818b0b30ca2c0bcfda1dc24e429221ed3508bc Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 26 Aug 2020 15:39:41 +0200 Subject: [PATCH] Updated comments --- src/dorkbox/network/rmi/messages/ContinuationSerializer.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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<*>? {