io.gitlab.arturbosch.detekt.api.internal.SimpleNotification.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of detekt-api Show documentation
Show all versions of detekt-api Show documentation
Static code analysis for Kotlin
The newest version!
package io.gitlab.arturbosch.detekt.api.internal
import io.gitlab.arturbosch.detekt.api.Notification
data class SimpleNotification(
override val message: String,
override val level: Notification.Level = Notification.Level.Error
) : Notification {
override fun toString(): String = message
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy