mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2025-10-03 22:29:30 +00:00
Revert "now HandlersRegisrar properties are open"
This reverts commit 67b9a03366
.
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user