package f;

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 u {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    private u f3083a;

    public i(u uVar) {
        if (uVar == null) {
            throw new IllegalArgumentException("delegate == null");
        }
        this.f3083a = uVar;
    }

    public final u a() {
        return this.f3083a;
    }

    public final i b(u uVar) {
        if (uVar == null) {
            throw new IllegalArgumentException("delegate == null");
        }
        this.f3083a = uVar;
        return this;
    }

    @Override // f.u
    public u clearDeadline() {
        return this.f3083a.clearDeadline();
    }

    @Override // f.u
    public u clearTimeout() {
        return this.f3083a.clearTimeout();
    }

    @Override // f.u
    public long deadlineNanoTime() {
        return this.f3083a.deadlineNanoTime();
    }

    @Override // f.u
    public boolean hasDeadline() {
        return this.f3083a.hasDeadline();
    }

    @Override // f.u
    public void throwIfReached() throws IOException {
        this.f3083a.throwIfReached();
    }

    @Override // f.u
    public u timeout(long j, TimeUnit timeUnit) {
        return this.f3083a.timeout(j, timeUnit);
    }

    @Override // f.u
    public long timeoutNanos() {
        return this.f3083a.timeoutNanos();
    }

    @Override // f.u
    public u deadlineNanoTime(long j) {
        return this.f3083a.deadlineNanoTime(j);
    }
}
