Fix mapping stream codec

This commit is contained in:
DBotThePony 2024-03-21 00:04:45 +07:00
parent b4143a11d0
commit 58ce191680
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.10.0
projectVersion=2.10.1
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -210,7 +210,7 @@ interface StreamCodec<V> {
}
override fun copy(value: R): R {
return copy(value)
return copy.invoke(value)
}
}
}