57 lines
1.2 KiB
Java
57 lines
1.2 KiB
Java
package o;
|
|
|
|
import java.io.IOException;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class giW extends giY {
|
|
public giY b;
|
|
|
|
public giW(giY giy) {
|
|
if (giy == null) {
|
|
throw new IllegalArgumentException("delegate == null");
|
|
}
|
|
this.b = giy;
|
|
}
|
|
|
|
@Override // o.giY
|
|
public giY timeout(long j, TimeUnit timeUnit) {
|
|
return this.b.timeout(j, timeUnit);
|
|
}
|
|
|
|
@Override // o.giY
|
|
public long timeoutNanos() {
|
|
return this.b.timeoutNanos();
|
|
}
|
|
|
|
@Override // o.giY
|
|
public boolean hasDeadline() {
|
|
return this.b.hasDeadline();
|
|
}
|
|
|
|
@Override // o.giY
|
|
public long deadlineNanoTime() {
|
|
return this.b.deadlineNanoTime();
|
|
}
|
|
|
|
@Override // o.giY
|
|
public giY deadlineNanoTime(long j) {
|
|
return this.b.deadlineNanoTime(j);
|
|
}
|
|
|
|
@Override // o.giY
|
|
public giY clearTimeout() {
|
|
return this.b.clearTimeout();
|
|
}
|
|
|
|
@Override // o.giY
|
|
public giY clearDeadline() {
|
|
return this.b.clearDeadline();
|
|
}
|
|
|
|
@Override // o.giY
|
|
public void throwIfReached() throws IOException {
|
|
this.b.throwIfReached();
|
|
}
|
|
}
|