Skip to content

Commit

Permalink
Add hashCode for EtsClassSignature
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipen committed Aug 5, 2024
1 parent 00164e3 commit 28d2b4d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ data class EtsClassSignature(
if (other !is EtsClassSignature) return false
return this.name == other.name && this.file == other.file
}

override fun hashCode(): Int {
return name.hashCode()
}

}

data class EtsFieldSignature(
Expand Down

0 comments on commit 28d2b4d

Please sign in to comment.