Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.google.firebase.concurrent;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
import java.util.concurrent.Executor;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public enum UiExecutor implements Executor {
|
||||
INSTANCE;
|
||||
|
||||
|
||||
@SuppressLint({"ThreadPoolCreation"})
|
||||
private static final Handler HANDLER = new Handler(Looper.getMainLooper());
|
||||
|
||||
@Override // java.util.concurrent.Executor
|
||||
public void execute(Runnable runnable) {
|
||||
HANDLER.post(runnable);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user