in src/main/kotlin/org/jetbrains/intellij/platform/gradle/utils/Version.kt [29:41]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as Version
if (major != other.major) return false
if (minor != other.minor) return false
if (patch != other.patch) return false
if (!toString().equals(other.toString(), ignoreCase = true)) return false
return true
}