override fun equals()

in src/main/kotlin/org/jetbrains/tinygoplugin/heapAllocations/toolWindow/model/TinyGoHeapAllocsTreeNodes.kt [133:138]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (this.javaClass != other?.javaClass) return false
        val that = other as? HeapAllocNode ?: return false
        return that.project == project && that.heapAlloc == heapAlloc
    }