in src/main/kotlin/org/jetbrains/teamcity/github/RepoKey.kt [18:24]
override fun equals(other: Any?): Boolean {
return if (other is RepoKey) {
server.equals(other.server, true) && owner.equals(other.owner, true) && name.equals(other.name, true)
} else {
false
}
}