- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
23 lines
569 B
Java
23 lines
569 B
Java
package androidx.work;
|
|
|
|
import androidx.annotation.RestrictTo;
|
|
import java.util.concurrent.Executor;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP})
|
|
/* loaded from: classes.dex */
|
|
public enum DirectExecutor implements Executor {
|
|
INSTANCE;
|
|
|
|
@Override // java.lang.Enum
|
|
public String toString() {
|
|
return "DirectExecutor";
|
|
}
|
|
|
|
@Override // java.util.concurrent.Executor
|
|
public void execute(Runnable command) {
|
|
Intrinsics.checkNotNullParameter(command, "command");
|
|
command.run();
|
|
}
|
|
}
|