override fun equals()

in intellij-plugin/educational-core/src/com/jetbrains/edu/learning/marketplace/lti/LTISettings.kt [11:24]


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

    other as LTISettings

    if (launchId != other.launchId) return false
    if (lmsDescription != other.lmsDescription) return false
    if (onlineService != other.onlineService) return false
    if (returnLink != other.returnLink) return false

    return true
  }