override fun hashCode()

in src/main/kotlin/com/haulmont/astronomy/model/Dimensions.kt [29:34]


    override fun hashCode(): Int {
        var result: Int = length?.hashCode() ?: 0
        result = 31 * result + (width?.hashCode() ?: 0)
        result = 31 * result + (height?.hashCode() ?: 0)
        return result
    }