Skip to content

Commit

Permalink
Revert view
Browse files Browse the repository at this point in the history
  • Loading branch information
markusweigelt committed Jan 9, 2024
1 parent 37a9e05 commit 3079c44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || !getClass().isInstance(o)) {
if (o == null || getClass() != o.getClass()) {
return false;
}
View view = (View) o;
Expand Down

0 comments on commit 3079c44

Please sign in to comment.