mirror of
https://github.com/InsanusMokrassar/SauceNaoAPI.git
synced 2024-11-26 16:28:42 +00:00
LimitsState take comparison operator
This commit is contained in:
parent
7727d2400e
commit
5f8e410531
@ -8,4 +8,6 @@ data class LimitsState(
|
|||||||
val maxLongQuota: Int,
|
val maxLongQuota: Int,
|
||||||
val knownShortQuota: Int,
|
val knownShortQuota: Int,
|
||||||
val knownLongQuota: Int
|
val knownLongQuota: Int
|
||||||
)
|
) : Comparable<LimitsState> {
|
||||||
|
override fun compareTo(other: LimitsState): Int = knownShortQuota.compareTo(other.knownShortQuota)
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user