override fun equals()

in src/main/kotlin/org/jetbrains/tinygoplugin/services/TinyGoLibraryProvider.kt [16:21]


    override fun equals(other: Any?): Boolean {
        if (other == null || other !is TinyGoRootLibrary) {
            return false
        }
        return other.moduleName == moduleName && other.sourceRoots == sourceRoots
    }