in src/main/kotlin/com/jetbrains/plugin/jtreg/configuration/model/RepeatSettings.kt [36:41]
override fun equals(other: Any?): Boolean {
if (other !is RepeatSettings) return false
return Objects.equals(mode, other.mode) &&
Objects.equals(count, other.count) &&
Objects.equals(maxCount, other.maxCount)
}