mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
21 lines
534 B
Java
21 lines
534 B
Java
package io.sentry;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class NoOpEnvelopeReader implements IEnvelopeReader {
|
|
private static final NoOpEnvelopeReader instance = new NoOpEnvelopeReader();
|
|
|
|
public static NoOpEnvelopeReader getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
@Override // io.sentry.IEnvelopeReader
|
|
public SentryEnvelope read(InputStream inputStream) throws IOException {
|
|
return null;
|
|
}
|
|
|
|
private NoOpEnvelopeReader() {
|
|
}
|
|
}
|