Skip to content

Commit

Permalink
removing unecessary equals method
Browse files Browse the repository at this point in the history
  • Loading branch information
li-ukumar committed Jun 25, 2024
1 parent 0c58c07 commit 2d2e6bb
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,4 @@ public CharSequence next() {
}
};
}

@Override
public boolean equals(Object o) {
return o instanceof CharSequenceListView && utf8List.equals(((CharSequenceListView) o).utf8List);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,4 @@ public String next() {
}
};
}

@Override
public boolean equals(Object o) {
return o instanceof StringListView && _utf8List.equals(((StringListView) o)._utf8List);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,4 @@ public void clear() {
public Iterator<Utf8> iterator() {
return utf8List.iterator();
}

@Override
public boolean equals(Object o) {
return o instanceof Utf8ListView && utf8List.equals(((Utf8ListView) o).utf8List);
}
}

0 comments on commit 2d2e6bb

Please sign in to comment.