()
| 208 | } |
| 209 | |
| 210 | private okhttp3.Call createRawCall() throws IOException { |
| 211 | okhttp3.Call call = callFactory.newCall(requestFactory.create(instance, args)); |
| 212 | if (call == null) { |
| 213 | throw new NullPointerException("Call.Factory returned null."); |
| 214 | } |
| 215 | return call; |
| 216 | } |
| 217 | |
| 218 | Response<T> parseResponse(okhttp3.Response rawResponse) throws IOException { |
| 219 | ResponseBody rawBody = rawResponse.body(); |
no test coverage detected