Kotlin: Rename CODEQL_EXTRACTOR_KOTLIN_WARNING_LIMIT to CODEQL_EXTRACTOR_KOTLIN_DIAGNOSTIC_LIMIT

This commit is contained in:
Ian Lynagh
2022-02-04 13:20:07 +00:00
parent a25b411dd0
commit 79f80e6541

View File

@@ -8,7 +8,7 @@ class LogCounter() {
public val diagnosticCounts = mutableMapOf<String, Int>()
public val diagnosticLimit: Int
init {
diagnosticLimit = System.getenv("CODEQL_EXTRACTOR_KOTLIN_WARNING_LIMIT")?.toIntOrNull() ?: 100
diagnosticLimit = System.getenv("CODEQL_EXTRACTOR_KOTLIN_DIAGNOSTIC_LIMIT")?.toIntOrNull() ?: 100
}
}