35 lines
759 B
Java
35 lines
759 B
Java
package o;
|
|
|
|
import java.util.concurrent.Executor;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class Ytd implements Executor {
|
|
private final Executor c;
|
|
|
|
public Ytd(Executor executor) {
|
|
this.c = executor;
|
|
}
|
|
|
|
@Override // java.util.concurrent.Executor
|
|
public final void execute(Runnable runnable) {
|
|
this.c.execute(new RVV(runnable));
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
static class RVV implements Runnable {
|
|
private final Runnable e;
|
|
|
|
RVV(Runnable runnable) {
|
|
this.e = runnable;
|
|
}
|
|
|
|
@Override // java.lang.Runnable
|
|
public final void run() {
|
|
try {
|
|
this.e.run();
|
|
} catch (Exception unused) {
|
|
}
|
|
}
|
|
}
|
|
}
|