forked from Juby210/discord-jadx
28 lines
633 B
Java
28 lines
633 B
Java
package g0;
|
|
|
|
import d0.z.d.m;
|
|
import java.io.IOException;
|
|
/* compiled from: ForwardingSource.kt */
|
|
public abstract class j implements x {
|
|
public final x i;
|
|
|
|
public j(x xVar) {
|
|
m.checkParameterIsNotNull(xVar, "delegate");
|
|
this.i = xVar;
|
|
}
|
|
|
|
@Override // g0.x, java.io.Closeable, java.lang.AutoCloseable
|
|
public void close() throws IOException {
|
|
this.i.close();
|
|
}
|
|
|
|
@Override // g0.x
|
|
public y timeout() {
|
|
return this.i.timeout();
|
|
}
|
|
|
|
@Override // java.lang.Object
|
|
public String toString() {
|
|
return getClass().getSimpleName() + '(' + this.i + ')';
|
|
}
|
|
}
|