(Object o)
| 63 | } |
| 64 | |
| 65 | @Override |
| 66 | public boolean equals(Object o) { |
| 67 | if (this == o) return true; |
| 68 | if (o == null || getClass() != o.getClass()) return false; |
| 69 | Hash128 hash128 = (Hash128) o; |
| 70 | return high_ == hash128.high_ && low_ == hash128.low_; |
| 71 | } |
| 72 | |
| 73 | @Override |
| 74 | public int hashCode() { |
no outgoing calls
no test coverage detected