21 lines
559 B
Java
21 lines
559 B
Java
package pl.droidsonroids.gif;
|
|
|
|
import java.util.concurrent.ScheduledThreadPoolExecutor;
|
|
import java.util.concurrent.ThreadPoolExecutor;
|
|
|
|
/* loaded from: classes2.dex */
|
|
final class GifRenderingExecutor extends ScheduledThreadPoolExecutor {
|
|
|
|
private static final class InstanceHolder {
|
|
private static final GifRenderingExecutor a = new GifRenderingExecutor();
|
|
}
|
|
|
|
static GifRenderingExecutor a() {
|
|
return InstanceHolder.a;
|
|
}
|
|
|
|
private GifRenderingExecutor() {
|
|
super(1, new ThreadPoolExecutor.DiscardPolicy());
|
|
}
|
|
}
|