Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
amorynan committed Nov 29, 2023
1 parent e306d3e commit 9cba9df
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,6 @@ public int hashCode() {

@Override
public boolean equals(Object o) {
if (o == null) {
return false;
}
if (!(o instanceof ArrayLiteral)) {
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,6 @@ public int hashCode() {

@Override
public boolean equals(Object o) {
if (o == null) {
return false;
}
if (!(o instanceof MapLiteral)) {
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,6 @@ public int hashCode() {

@Override
public boolean equals(Object o) {
if (o == null) {
return false;
}
if (!(o instanceof StructLiteral)) {
return false;
}
Expand Down

0 comments on commit 9cba9df

Please sign in to comment.