mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
22 lines
610 B
Java
22 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();
|
||
|
}
|
||
|
}
|