Fix ktlint setup

This commit is contained in:
Phillip Thelen 2022-08-02 18:49:59 +02:00
parent 60af91b91c
commit e7329d6968
4 changed files with 3 additions and 3 deletions

Binary file not shown.

View file

@ -9,4 +9,4 @@ enum class Attribute constructor(val value: String) {
companion object { companion object {
fun from(type: String?): Attribute? = values().find { it.value == type } fun from(type: String?): Attribute? = values().find { it.value == type }
} }
} }

View file

@ -9,4 +9,4 @@ enum class Frequency constructor(val value: String) {
companion object { companion object {
fun from(type: String?): Frequency? = values().find { it.value == type } fun from(type: String?): Frequency? = values().find { it.value == type }
} }
} }

View file

@ -11,4 +11,4 @@ enum class TaskType constructor(val value: String) {
companion object { companion object {
fun from(type: String?): TaskType? = values().find { it.value == type } fun from(type: String?): TaskType? = values().find { it.value == type }
} }
} }