Skip to content

Commit

Permalink
Replace toLowerCase() with lowercase()
Browse files Browse the repository at this point in the history
(cherry picked from commit 5ed6e36)
  • Loading branch information
ting-yuan authored and KSP Auto Pick committed Oct 18, 2024
1 parent 48d41e9 commit 4c489c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class ClassVisitor : KSTopDownVisitor<OutputStreamWriter, Unit>() {
data: OutputStreamWriter
) {
super.visitClassDeclaration(classDeclaration, data)
val symbolName = classDeclaration.simpleName.asString().toLowerCase()
val symbolName = classDeclaration.simpleName.asString().lowercase()
data.write(" val $symbolName = true\n")
}
}
Expand Down

0 comments on commit 4c489c9

Please sign in to comment.