what-the-bank/sources/o/AbstractC15154gii.java

49 lines
1.2 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.io.IOException;
/* renamed from: o.gii, reason: case insensitive filesystem */
/* loaded from: classes.dex */
public abstract class AbstractC15154gii implements giD {
private final giD delegate;
public AbstractC15154gii(giD gid) {
C14957gcv.e(gid, "");
this.delegate = gid;
}
@Override // o.giD
public long read(C15111ghZ c15111ghZ, long j) throws IOException {
C14957gcv.e(c15111ghZ, "");
return this.delegate.read(c15111ghZ, j);
}
@Override // o.giD
public C15139giB timeout() {
return this.delegate.timeout();
}
@Override // o.giD, java.io.Closeable, java.lang.AutoCloseable
public void close() throws IOException {
this.delegate.close();
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append('(');
sb.append(this.delegate);
sb.append(')');
return sb.toString();
}
public final giD delegate() {
return this.delegate;
}
/* renamed from: -deprecated_delegate, reason: not valid java name */
public final giD m356deprecated_delegate() {
return this.delegate;
}
}