Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Override
- public boolean equals(Object obj) {
- if (obj == null) return false;
- if (getClass() != obj.getClass()) return false;
- final Block<?> other = (Block<?>) obj;
- return Objects.equals(this.title, other.title);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement