- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
408 B
Java
20 lines
408 B
Java
package androidx.core.provider;
|
|
|
|
import android.os.Handler;
|
|
import android.os.Looper;
|
|
import androidx.annotation.NonNull;
|
|
|
|
/* loaded from: classes.dex */
|
|
class CalleeHandler {
|
|
private CalleeHandler() {
|
|
}
|
|
|
|
@NonNull
|
|
public static Handler create() {
|
|
if (Looper.myLooper() == null) {
|
|
return new Handler(Looper.getMainLooper());
|
|
}
|
|
return new Handler();
|
|
}
|
|
}
|