Skip to content

Commit

Permalink
Merge pull request #1653 from GrzegorzBobryk/maintenance/toLowerCase_…
Browse files Browse the repository at this point in the history
…deprecation

[maintenance] toLowerCase deprecation
  • Loading branch information
arnaudgiuliani committed Jul 15, 2024
2 parents 5fb1d9b + f621b0e commit bf8de08
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 bf8de08

Please sign in to comment.