17 lines
389 B
Java
17 lines
389 B
Java
package com.huawei.hms.hwid;
|
|
|
|
import android.os.Looper;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class r {
|
|
public static void a() {
|
|
a("Must not be called on the main application thread");
|
|
}
|
|
|
|
public static void a(String str) {
|
|
if (Thread.currentThread() == Looper.getMainLooper().getThread()) {
|
|
throw new IllegalStateException(str);
|
|
}
|
|
}
|
|
}
|