(Object o)
| 73 | } |
| 74 | |
| 75 | @Override |
| 76 | public boolean equals(Object o) { |
| 77 | if (!(o instanceof Event)) { |
| 78 | return false; |
| 79 | } |
| 80 | |
| 81 | Event that = (Event) o; |
| 82 | return Objects.equals(this.getId(), that.getId()) |
| 83 | && Objects.equals(this.getType(), that.getType()) |
| 84 | && Objects.equals(this.getRawData(), that.getRawData()); |
| 85 | } |
| 86 | |
| 87 | @Override |
| 88 | public int hashCode() { |
no test coverage detected