Minor. Remove unused properties
This commit is contained in:
@@ -17,13 +17,11 @@
|
||||
package org.jetbrains.kotlin.utils
|
||||
|
||||
enum class Jsr305State(
|
||||
val description: String,
|
||||
val shouldReportWarning: Boolean = false,
|
||||
val shouldReportError: Boolean = false
|
||||
val description: String
|
||||
) {
|
||||
IGNORE("ignore"),
|
||||
WARN("warn", shouldReportWarning = true),
|
||||
STRICT("strict", shouldReportError = true),
|
||||
WARN("warn"),
|
||||
STRICT("strict"),
|
||||
;
|
||||
|
||||
companion object {
|
||||
|
||||
Reference in New Issue
Block a user