mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
18 lines
448 B
Java
18 lines
448 B
Java
package io.sentry.transport;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class NoOpTransportGate implements ITransportGate {
|
|
private static final NoOpTransportGate instance = new NoOpTransportGate();
|
|
|
|
public static NoOpTransportGate getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
@Override // io.sentry.transport.ITransportGate
|
|
public boolean isConnected() {
|
|
return true;
|
|
}
|
|
|
|
private NoOpTransportGate() {
|
|
}
|
|
}
|