()
| 26 | |
| 27 | new Thread(new Runnable() { |
| 28 | public void run() { |
| 29 | try { |
| 30 | download(mParam, res); |
| 31 | mParam.onTaskCompleted.onTaskCompleted(res); |
| 32 | } catch (Exception ex) { |
| 33 | res.exception = ex; |
| 34 | mParam.onTaskCompleted.onTaskCompleted(res); |
| 35 | } |
| 36 | } |
| 37 | }).start(); |
| 38 | |
| 39 | return res; |
nothing calls this directly
no test coverage detected