override fun equals()

in intellij/ast/src/main/kotlin/motif/ast/intellij/IntelliJAnnotation.kt [65:70]


  override fun equals(other: Any?): Boolean {
    if (this === other) return true
    if (javaClass != other?.javaClass) return false
    other as IntelliJAnnotation
    return key == other.key
  }