Skip to content

Commit b611cfe

Browse files
authored
Merge pull request #29 from FusionAuth/rob/issue-1206
issue-1206
2 parents 4f1cf0a + 35340cc commit b611cfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/fusionauth/domain/provider/NintendoIdentityProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public boolean equals(Object o) {
5858
if (this == o) {
5959
return true;
6060
}
61-
if (o == null || getClass() != o.getClass()) {
61+
if (!(o instanceof NintendoIdentityProvider)) {
6262
return false;
6363
}
6464
if (!super.equals(o)) {

0 commit comments

Comments
 (0)