mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-30 11:02:31 -06:00
29 lines
585 B
Java
29 lines
585 B
Java
package androidx.media3.common.util;
|
|
|
|
import android.os.Trace;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class TraceUtil {
|
|
private TraceUtil() {
|
|
}
|
|
|
|
public static void beginSection(String str) {
|
|
if (Util.SDK_INT >= 18) {
|
|
beginSectionV18(str);
|
|
}
|
|
}
|
|
|
|
public static void endSection() {
|
|
if (Util.SDK_INT >= 18) {
|
|
endSectionV18();
|
|
}
|
|
}
|
|
|
|
private static void beginSectionV18(String str) {
|
|
Trace.beginSection(str);
|
|
}
|
|
|
|
private static void endSectionV18() {
|
|
Trace.endSection();
|
|
}
|
|
}
|