made read accessible

This commit is contained in:
Robinson 2023-09-13 16:01:32 +02:00
parent 81380fe633
commit 5021eb5136
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ class KryoReader<CONNECTION: Connection>(private val maxMessageSize: Int) : Kryo
* + class and object bytes +
* ++++++++++++++++++++++++++
*/
private fun read(connection: CONNECTION, reader: Input): Any? {
fun read(connection: CONNECTION, reader: Input): Any? {
// required by RMI and some serializers to determine which connection wrote (or has info about) this object
this.connection = connection