()
| 164 | |
| 165 | // Checks if the response is likely to be JSON. |
| 166 | private boolean isJson() { |
| 167 | return hasJsonHeader() && hasBody(); |
| 168 | } |
| 169 | |
| 170 | // Checks if the response headers include a JSON mime-type. |
| 171 | private boolean hasJsonHeader() { |
no test coverage detected