()
| 270 | private static ExecutorService sDownloadExecutor = null; |
| 271 | |
| 272 | static ExecutorService getSerialExecutor() { |
| 273 | if (sSerialExecutor == null) |
| 274 | sSerialExecutor = getBackgroundExecutor(1, "serial"); |
| 275 | return sSerialExecutor; |
| 276 | } |
| 277 | |
| 278 | static ExecutorService getParallelExecutor() { |
| 279 | if (sParallelExecutor == null) |
no test coverage detected