in src/main/kotlin/com/jetbrains/plugin/jtreg/configuration/model/WestonSettings.kt [37:44]
override fun equals(other: Any?): Boolean {
if (other !is WestonSettings) return false
return Objects.equals(useWeston, other.useWeston) &&
Objects.equals(screensCount, other.screensCount) &&
Objects.equals(screenWidth, other.screenWidth) &&
Objects.equals(screenHeight, other.screenHeight) &&
Objects.equals(wakefieldPath, other.wakefieldPath)
}