package h;

import java.io.IOException;
import java.util.concurrent.TimeUnit;

/* JADX INFO: compiled from: ForwardingTimeout.java */
/* JADX INFO: loaded from: classes.dex */
public class i extends t {
    private t a;

    public i(t tVar) {
        if (tVar == null) {
            throw new IllegalArgumentException("delegate == null");
        }
        this.a = tVar;
    }

    public final t a() {
        return this.a;
    }

    public final i b(t tVar) {
        if (tVar == null) {
            throw new IllegalArgumentException("delegate == null");
        }
        this.a = tVar;
        return this;
    }

    @Override // h.t
    public t clearDeadline() {
        return this.a.clearDeadline();
    }

    @Override // h.t
    public t clearTimeout() {
        return this.a.clearTimeout();
    }

    @Override // h.t
    public long deadlineNanoTime() {
        return this.a.deadlineNanoTime();
    }

    @Override // h.t
    public boolean hasDeadline() {
        return this.a.hasDeadline();
    }

    @Override // h.t
    public void throwIfReached() throws IOException {
        this.a.throwIfReached();
    }

    @Override // h.t
    public t timeout(long j2, TimeUnit timeUnit) {
        return this.a.timeout(j2, timeUnit);
    }

    @Override // h.t
    public long timeoutNanos() {
        return this.a.timeoutNanos();
    }

    @Override // h.t
    public t deadlineNanoTime(long j2) {
        return this.a.deadlineNanoTime(j2);
    }
}
