(Object o)
| 144 | } |
| 145 | |
| 146 | @Override |
| 147 | public boolean equals(Object o) { |
| 148 | if (this == o) { |
| 149 | return true; |
| 150 | } |
| 151 | if (o == null || getClass() != o.getClass()) { |
| 152 | return false; |
| 153 | } |
| 154 | MapFact<?, ?> that = (MapFact<?, ?>) o; |
| 155 | return map.equals(that.map); |
| 156 | } |
| 157 | |
| 158 | @Override |
| 159 | public int hashCode() { |
no test coverage detected