discord-jadx/app/src/main/java/g0/j.java

29 lines
631 B
Java
Raw Normal View History

2021-11-02 06:38:17 +00:00
package g0;
import d0.z.d.m;
import java.io.IOException;
/* compiled from: ForwardingSource.kt */
2022-03-07 09:34:54 +00:00
/* loaded from: classes3.dex */
2021-11-02 06:38:17 +00:00
public abstract class j implements x {
2021-12-02 18:53:44 +00:00
public final x j;
2021-11-02 06:38:17 +00:00
public j(x xVar) {
m.checkParameterIsNotNull(xVar, "delegate");
2021-12-02 18:53:44 +00:00
this.j = xVar;
2021-11-02 06:38:17 +00:00
}
@Override // g0.x, java.io.Closeable, java.lang.AutoCloseable
public void close() throws IOException {
2021-12-02 18:53:44 +00:00
this.j.close();
2021-11-02 06:38:17 +00:00
}
@Override // g0.x
public y timeout() {
2021-12-02 18:53:44 +00:00
return this.j.timeout();
2021-11-02 06:38:17 +00:00
}
public String toString() {
2021-12-02 18:53:44 +00:00
return getClass().getSimpleName() + '(' + this.j + ')';
2021-11-02 06:38:17 +00:00
}
}