44 lines
988 B
Java
44 lines
988 B
Java
package o;
|
|
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public abstract class giS implements giZ {
|
|
private final giZ ann;
|
|
|
|
public giS(giZ giz) {
|
|
if (giz == null) {
|
|
throw new IllegalArgumentException("delegate == null");
|
|
}
|
|
this.ann = giz;
|
|
}
|
|
|
|
@Override // o.giZ
|
|
public long read(giM gim, long j) throws IOException {
|
|
return this.ann.read(gim, j);
|
|
}
|
|
|
|
@Override // o.giZ
|
|
public giY timeout() {
|
|
return this.ann.timeout();
|
|
}
|
|
|
|
@Override // o.giZ, java.io.Closeable, java.lang.AutoCloseable
|
|
public void close() throws IOException {
|
|
this.ann.close();
|
|
}
|
|
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append(getClass().getSimpleName());
|
|
sb.append("(");
|
|
sb.append(this.ann.toString());
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final giZ delegate() {
|
|
return this.ann;
|
|
}
|
|
}
|