This commit is contained in:
M66B 2023-01-05 12:02:30 +01:00
parent 6a5b3e6fb8
commit 4f21c1cc9c
1 changed files with 0 additions and 7 deletions

View File

@ -247,7 +247,6 @@ public class Helper {
private static ExecutorService sSerialExecutor = null;
private static ExecutorService sParallelExecutor = null;
private static ExecutorService sSerialTaskExecutor = null;
private static ExecutorService sMediaExecutor = null;
private static ExecutorService sDownloadExecutor = null;
@ -266,12 +265,6 @@ public class Helper {
return sParallelExecutor;
}
static ExecutorService getSerialTaskExecutor() {
if (sSerialTaskExecutor == null)
sSerialTaskExecutor = getBackgroundExecutor(1, "task");
return sSerialTaskExecutor;
}
static ExecutorService getMediaTaskExecutor() {
if (sMediaExecutor == null)
sMediaExecutor = getBackgroundExecutor(0, 1, 3, "media");