kassim
02/19/2019, 10:27 AMclass BehaviorRelayUpdateOnlyProperty<T>(relay: BehaviorRelay<T>) : BehaviorRelayProperty<T>(relay)
I wanted to prevent T from extending MutableCollection - but with your solution the new constructor shares the same JVM signature as the original
constructor(mutablePropertyRelay: BehaviorRelay<MutableCollection<*>>) : this(mutablePropertyRelay)
isn't acceptedkarelpeeters
02/19/2019, 11:36 AM@JvmName
? In the end I think this really should be a lint check instead.