Skip to content

Commit

Permalink
Fixed equality for list and oneof values
Browse files Browse the repository at this point in the history
See #2068
  • Loading branch information
hurricup committed Jun 24, 2019
1 parent c9bd4f8 commit 7d98e4e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ public boolean equals(Object o) {
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}

PerlListValue value = (PerlListValue)o;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,6 @@ public boolean equals(Object o) {
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}

PerlOneOfValue of = (PerlOneOfValue)o;

return myVariants.equals(of.myVariants);
Expand Down

0 comments on commit 7d98e4e

Please sign in to comment.