ListenableDelegate.SmartBox default arguments

This commit is contained in:
DBotThePony 2024-02-24 23:25:04 +07:00
parent 672f185584
commit cde5db7a78
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.9.1
projectVersion=2.9.2
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -55,7 +55,7 @@ interface ListenableDelegate<V> : Delegate<V>, Listenable<V> {
}
}
class SmartBox<V>(value: V, private val getter: DelegateGetter<V>, private val setter: DelegateSetter<V>) : ListenableDelegate<V> {
class SmartBox<V>(value: V, private val getter: DelegateGetter<V> = DelegateGetter.passthrough(), private val setter: DelegateSetter<V> = DelegateSetter.passthrough()) : ListenableDelegate<V> {
private val value = Box(value)
fun clearListeners() {