Skip to content

Commit

Permalink
nullpointerexception
Browse files Browse the repository at this point in the history
  • Loading branch information
xiejx618 committed Aug 13, 2020
1 parent c459ac5 commit 65251ac
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -128,13 +128,13 @@ public boolean equals(Object o) {
return false;
}
Example example = (Example) o;
return id.equals(example.id) &&
return Objects.equals(id, example.id) &&
Objects.equals(summary, example.summary) &&
Objects.equals(description, example.description) &&
value.equals(example.value) &&
externalValue.equals(example.externalValue) &&
mediaType.equals(example.mediaType) &&
extensions.equals(example.extensions);
Objects.equals(value, example.value) &&
Objects.equals(externalValue, example.externalValue) &&
Objects.equals(mediaType, example.mediaType) &&
Objects.equals(extensions, example.extensions);
}

@Override
Expand Down

0 comments on commit 65251ac

Please sign in to comment.