mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-26 03:58:45 +00:00
Revert "now HandlersRegisrar properties are open"
This reverts commit 67b9a03366
.
This commit is contained in:
parent
67b9a03366
commit
d85b3d0da9
@ -10,8 +10,8 @@ import kotlinx.coroutines.*
|
||||
* to handle data inside of [handle] method
|
||||
*/
|
||||
open class HandlersRegistrar<T>(
|
||||
protected open val layers: Iterable<Iterable<Handler<T>>>,
|
||||
protected open val defaultHandler: Handler<T>? = null
|
||||
protected val layers: Iterable<Iterable<Handler<T>>>,
|
||||
protected val defaultHandler: Handler<T>? = null
|
||||
) : Handler<T> {
|
||||
/**
|
||||
* Will iterate over the [layers]. On each layer (in face each [Iterable] of [Handler]s) ALL the handlers will be
|
||||
|
Loading…
Reference in New Issue
Block a user