Migrate compiler, idea and others to new case conversion api
This commit is contained in:
+1
-1
@@ -125,7 +125,7 @@ object CompilerOutputParser {
|
||||
// We're directly inside the root tag: <MESSAGES>
|
||||
return
|
||||
}
|
||||
val qNameLowerCase = qName.toLowerCase(Locale.US)
|
||||
val qNameLowerCase = qName.lowercase()
|
||||
var category: CompilerMessageSeverity? = CATEGORIES[qNameLowerCase]
|
||||
if (category == null) {
|
||||
messageCollector.report(ERROR, "Unknown compiler message tag: $qName")
|
||||
|
||||
Reference in New Issue
Block a user