DelegateSyncher.Group merging

This commit is contained in:
DBotThePony 2024-02-10 15:41:03 +07:00
parent 80e5347ac6
commit 31b1278cc2
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 6 additions and 1 deletions

View File

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

View File

@ -749,6 +749,11 @@ class DelegateSyncher : Listenable<Unit>, Observer {
return delegate
}
fun add(other: Group): Group {
constructors.addAll(other.constructors)
return this
}
fun create(): DelegateSyncher {
return addInto(DelegateSyncher())
}