mirror of
https://github.com/InsanusMokrassar/krontab.git
synced 2024-11-22 16:23:55 +00:00
compile fixes
This commit is contained in:
parent
4995a34c1a
commit
ca248a25ad
@ -11,10 +11,9 @@ import dev.inmo.krontab.internal.toNearDateTime
|
|||||||
/**
|
/**
|
||||||
* This scheduler will be useful in case you want to unite several different [KronScheduler]s
|
* This scheduler will be useful in case you want to unite several different [KronScheduler]s
|
||||||
*/
|
*/
|
||||||
data class CollectionKronScheduler private constructor(
|
data class CollectionKronScheduler internal constructor(
|
||||||
internal val schedulers: MutableList<KronScheduler>
|
internal val schedulers: MutableList<KronScheduler>
|
||||||
) : KronScheduler {
|
) : KronScheduler {
|
||||||
internal constructor(schedulers: List<KronScheduler>) : this(schedulers.toMutableList())
|
|
||||||
internal constructor() : this(mutableListOf())
|
internal constructor() : this(mutableListOf())
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user