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

29 lines
633 B
Java
Raw Normal View History

2021-08-03 07:33:18 +00:00
package f0;
2021-10-15 06:18:26 +00:00
import c0.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;
2021-08-03 07:33:18 +00:00
}
2021-10-15 06:18:26 +00:00
@Override // f0.x, java.io.Closeable, java.lang.AutoCloseable
public void close() throws IOException {
this.i.close();
2021-08-03 07:33:18 +00:00
}
2021-10-15 06:18:26 +00:00
@Override // f0.x
public y timeout() {
return this.i.timeout();
2021-08-03 07:33:18 +00:00
}
2021-10-15 06:18:26 +00:00
@Override // java.lang.Object
2021-08-03 07:33:18 +00:00
public String toString() {
2021-10-15 06:18:26 +00:00
return getClass().getSimpleName() + '(' + this.i + ')';
2021-08-03 07:33:18 +00:00
}
}