mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
58 lines
2.8 KiB
Java
58 lines
2.8 KiB
Java
package okio;
|
|
|
|
import io.sentry.ProfilingTraceData;
|
|
import io.sentry.protocol.TransactionInfo;
|
|
import java.io.IOException;
|
|
import kotlin.Deprecated;
|
|
import kotlin.DeprecationLevel;
|
|
import kotlin.Metadata;
|
|
import kotlin.ReplaceWith;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* compiled from: ForwardingSink.kt */
|
|
@Metadata(bv = {1, 0, 3}, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\t\n\u0000\b&\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0001¢\u0006\u0002\u0010\u0003J\b\u0010\u0005\u001a\u00020\u0006H\u0016J\r\u0010\u0002\u001a\u00020\u0001H\u0007¢\u0006\u0002\b\u0007J\b\u0010\b\u001a\u00020\u0006H\u0016J\b\u0010\t\u001a\u00020\nH\u0016J\b\u0010\u000b\u001a\u00020\fH\u0016J\u0018\u0010\r\u001a\u00020\u00062\u0006\u0010\u000e\u001a\u00020\u000f2\u0006\u0010\u0010\u001a\u00020\u0011H\u0016R\u0013\u0010\u0002\u001a\u00020\u00018\u0007¢\u0006\b\n\u0000\u001a\u0004\b\u0002\u0010\u0004¨\u0006\u0012"}, d2 = {"Lokio/ForwardingSink;", "Lokio/Sink;", "delegate", "(Lokio/Sink;)V", "()Lokio/Sink;", "close", "", "-deprecated_delegate", "flush", ProfilingTraceData.TRUNCATION_REASON_TIMEOUT, "Lokio/Timeout;", "toString", "", "write", TransactionInfo.JsonKeys.SOURCE, "Lokio/Buffer;", "byteCount", "", "okio"}, k = 1, mv = {1, 4, 0})
|
|
/* loaded from: classes3.dex */
|
|
public abstract class ForwardingSink implements Sink {
|
|
private final Sink delegate;
|
|
|
|
@Deprecated(level = DeprecationLevel.ERROR, message = "moved to val", replaceWith = @ReplaceWith(expression = "delegate", imports = {}))
|
|
/* renamed from: -deprecated_delegate, reason: not valid java name and from getter */
|
|
public final Sink getDelegate() {
|
|
return this.delegate;
|
|
}
|
|
|
|
public final Sink delegate() {
|
|
return this.delegate;
|
|
}
|
|
|
|
public ForwardingSink(Sink delegate) {
|
|
Intrinsics.checkNotNullParameter(delegate, "delegate");
|
|
this.delegate = delegate;
|
|
}
|
|
|
|
@Override // okio.Sink
|
|
public void write(Buffer source, long byteCount) throws IOException {
|
|
Intrinsics.checkNotNullParameter(source, "source");
|
|
this.delegate.write(source, byteCount);
|
|
}
|
|
|
|
@Override // okio.Sink, java.io.Flushable
|
|
public void flush() throws IOException {
|
|
this.delegate.flush();
|
|
}
|
|
|
|
@Override // okio.Sink
|
|
/* renamed from: timeout */
|
|
public Timeout getTimeout() {
|
|
return this.delegate.getTimeout();
|
|
}
|
|
|
|
@Override // okio.Sink, java.io.Closeable, java.lang.AutoCloseable
|
|
public void close() throws IOException {
|
|
this.delegate.close();
|
|
}
|
|
|
|
public String toString() {
|
|
return getClass().getSimpleName() + '(' + this.delegate + ')';
|
|
}
|
|
}
|