mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
24 lines
736 B
Java
24 lines
736 B
Java
|
package io.sentry.instrumentation.file;
|
||
|
|
||
|
import io.sentry.ISpan;
|
||
|
import io.sentry.SentryOptions;
|
||
|
import java.io.File;
|
||
|
import java.io.FileInputStream;
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class FileInputStreamInitData {
|
||
|
final FileInputStream delegate;
|
||
|
final File file;
|
||
|
final SentryOptions options;
|
||
|
final ISpan span;
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public FileInputStreamInitData(File file, ISpan iSpan, FileInputStream fileInputStream, SentryOptions sentryOptions) {
|
||
|
this.file = file;
|
||
|
this.span = iSpan;
|
||
|
this.delegate = fileInputStream;
|
||
|
this.options = sentryOptions;
|
||
|
}
|
||
|
}
|