override fun hashCode()

in src/main/kotlin/mobi/hsz/idea/gitignore/indexing/IgnoreEntryOccurrence.kt [63:70]


    override fun hashCode(): Int {
        var result = url.hashCode()
        for (item in items) {
            result = 31 * result + (item.first?.hashCode() ?: 0)
            result = 31 * result + (item.second?.hashCode() ?: 0)
        }
        return result
    }