(Object o)
| 168 | } |
| 169 | |
| 170 | @Override |
| 171 | public boolean equals(Object o) { |
| 172 | if (this == o) { |
| 173 | return true; |
| 174 | } |
| 175 | if (o == null || getClass() != o.getClass()) { |
| 176 | return false; |
| 177 | } |
| 178 | NamedFilterConfig that = (NamedFilterConfig) o; |
| 179 | return Objects.equals(name, that.name) |
| 180 | && Objects.equals(filterConfig, that.filterConfig); |
| 181 | } |
| 182 | |
| 183 | @Override |
| 184 | public int hashCode() { |
nothing calls this directly
no outgoing calls
no test coverage detected