Skip to content

Commit

Permalink
[java] Fixes SeleniumHQ#12442
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol authored and CandorContent committed Aug 25, 2023
1 parent a85254f commit 9d7fef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/remote/RemoteWebElement.java
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ public int hashCode() {
if (id != null) {
return id.hashCode();
}
return this.hashCode();
return super.hashCode();
}

/*
Expand Down

0 comments on commit 9d7fef5

Please sign in to comment.