Skip to content

Commit

Permalink
[BugFix] Fix ObjectType equal (StarRocks#46130)
Browse files Browse the repository at this point in the history
Signed-off-by: yandongxiao <[email protected]>
  • Loading branch information
yandongxiao authored May 23, 2024
1 parent d470ffe commit 6eb5635
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
if (!(o instanceof ObjectType)) {
return false;
}
ObjectType that = (ObjectType) o;
Expand Down

0 comments on commit 6eb5635

Please sign in to comment.