()
| 281 | public AsyncTask() { |
| 282 | mWorker = new WorkerRunnable<Params, Result>() { |
| 283 | public Result call() throws Exception { |
| 284 | mTaskInvoked.set(true); |
| 285 | |
| 286 | Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND); |
| 287 | //noinspection unchecked |
| 288 | return postResult(doInBackground(mParams)); |
| 289 | } |
| 290 | }; |
| 291 | |
| 292 | mFuture = new FutureTask<Result>(mWorker) { |
nothing calls this directly
no test coverage detected