19 lines
463 B
Java
19 lines
463 B
Java
package com.liulishuo.filedownloader;
|
|
|
|
import com.liulishuo.filedownloader.event.DownloadEventPoolImpl;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class FileDownloadEventPool extends DownloadEventPoolImpl {
|
|
|
|
private static class HolderClass {
|
|
private static final FileDownloadEventPool a = new FileDownloadEventPool();
|
|
}
|
|
|
|
public static FileDownloadEventPool a() {
|
|
return HolderClass.a;
|
|
}
|
|
|
|
private FileDownloadEventPool() {
|
|
}
|
|
}
|