override fun equals()

in exposed-core/src/main/kotlin/org/jetbrains/exposed/v1/core/Version.kt [30:37]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (javaClass != other?.javaClass) return false

        other as Version

        return major == other.major && minor == other.minor && patch == other.patch
    }