()
| 276 | } |
| 277 | |
| 278 | static ExecutorService getParallelExecutor() { |
| 279 | if (sParallelExecutor == null) |
| 280 | sParallelExecutor = getBackgroundExecutor(0, "parallel"); |
| 281 | return sParallelExecutor; |
| 282 | } |
| 283 | |
| 284 | static ExecutorService getUIExecutor() { |
| 285 | if (sUIExecutor == null) |
no test coverage detected