override fun hashCode()

in src/main/kotlin/org/jetbrains/plugins/template/weatherApp/ui/WeatherAppViewModel.kt [179:183]


    override fun hashCode(): Int {
        var result = selectedIndex
        result = 31 * result + locations.hashCode()
        return result
    }