()
| 462 | } |
| 463 | |
| 464 | @Override |
| 465 | protected void onFinished() { |
| 466 | if (tracker != null) { |
| 467 | tracker.onFinished(request); |
| 468 | } |
| 469 | x.task().run(new Runnable() { |
| 470 | @Override |
| 471 | public void run() { |
| 472 | closeRequestSync(); |
| 473 | } |
| 474 | }); |
| 475 | callback.onFinished(); |
| 476 | } |
| 477 | |
| 478 | private void clearRawResult() { |
| 479 | if (rawResult instanceof Closeable) { |
nothing calls this directly
no test coverage detected