(Object obj)
| 167 | } |
| 168 | |
| 169 | public boolean equalsExtended(Object obj) { |
| 170 | if (equals(obj)) { |
| 171 | RequestKey other = (RequestKey) obj; |
| 172 | boolean headersEqual = |
| 173 | other.headers == null || headers == null || headers.equals(other.headers); |
| 174 | boolean charsetEqual = |
| 175 | other.charset == null || charset == null || charset.equals(other.charset); |
| 176 | boolean bodyEqual = other.body == null || body == null || Arrays.equals(other.body, body); |
| 177 | return headersEqual && charsetEqual && bodyEqual; |
| 178 | } |
| 179 | return false; |
| 180 | } |
| 181 | |
| 182 | @Override |
| 183 | public String toString() { |
no test coverage detected