Skip to content

Commit

Permalink
[maintenance] toLowerCase deprecation
Browse files Browse the repository at this point in the history
Deprecated `toLowerCase()` method replaced with `lowercase()`
  • Loading branch information
GrzegorzBobryk committed Jun 3, 2024
1 parent 04e7ecf commit f621b0e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ inline fun <reified T> qualifier() = TypeQualifier(T::class)
inline fun <reified T> _q() = TypeQualifier(T::class)

val <E : Enum<E>> Enum<E>.qualifier
get(): Qualifier {
return StringQualifier(this.toString().toLowerCase())
get() : Qualifier {
return StringQualifier(toString().lowercase())
}

0 comments on commit f621b0e

Please sign in to comment.