mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
15 lines
529 B
Java
15 lines
529 B
Java
|
package io.sentry.util;
|
||
|
|
||
|
import io.sentry.SentryIntegrationPackageStorage;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class IntegrationUtils {
|
||
|
public static void addIntegrationToSdkVersion(Class<?> cls) {
|
||
|
addIntegrationToSdkVersion(cls.getSimpleName().replace("Sentry", "").replace("Integration", "").replace("Interceptor", "").replace("EventProcessor", ""));
|
||
|
}
|
||
|
|
||
|
public static void addIntegrationToSdkVersion(String str) {
|
||
|
SentryIntegrationPackageStorage.getInstance().addIntegration(str);
|
||
|
}
|
||
|
}
|