Don't call observe() on write()

This commit is contained in:
DBotThePony 2024-02-25 16:29:52 +07:00
parent d5ef860d15
commit 6ba43852a3
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 4 additions and 3 deletions

View File

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

View File

@ -757,10 +757,11 @@ class DelegateSyncher : Observer {
/**
* Returns null of this remote is clean.
*
* [DelegateSyncher.observe] is not called automatically for performance
* reasons, you must call it manually.
*/
fun write(): FastByteArrayOutputStream? {
this@DelegateSyncher.observe()
if (dirty.isNotEmpty()) {
val data = FastByteArrayOutputStream()
val stream = DataOutputStream(data)