mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
21 lines
610 B
Java
21 lines
610 B
Java
package io.sentry;
|
|
|
|
import io.sentry.transport.ITransport;
|
|
import io.sentry.transport.NoOpTransport;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class NoOpTransportFactory implements ITransportFactory {
|
|
private static final NoOpTransportFactory instance = new NoOpTransportFactory();
|
|
|
|
public static NoOpTransportFactory getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
private NoOpTransportFactory() {
|
|
}
|
|
|
|
@Override // io.sentry.ITransportFactory
|
|
public ITransport create(SentryOptions sentryOptions, RequestDetails requestDetails) {
|
|
return NoOpTransport.getInstance();
|
|
}
|
|
}
|