We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6db05a commit 4b5e3eeCopy full SHA for 4b5e3ee
src/main/java/com/uid2/shared/model/Service.java
@@ -79,7 +79,7 @@ public String toString() {
79
@Override
80
public boolean equals(Object o) {
81
if (this == o) return true;
82
- if (!(o instanceof Service)) return false;
+ if (o == null || getClass() != o.getClass()) return false;
83
Service other = (Service) o;
84
85
return serviceId == other.serviceId
0 commit comments