Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kx-chen committed Jun 3, 2024
1 parent 1ab1dae commit 414ef9c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ public boolean equals(Object o) {
return false;
if (partitionId != null ? !partitionId.equals(that.partitionId) : that.partitionId != null)
return false;
if (sizeInBytes != that.sizeInBytes)
return false;
if (sizeInBytes != that.sizeInBytes) return false;
return indexType == that.indexType;
}

Expand Down

0 comments on commit 414ef9c

Please sign in to comment.