package h;

/* JADX INFO: loaded from: classes.dex */
public abstract class j implements w {

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final w f6536b;

    public j(w wVar) {
        if (wVar == null) {
            throw new IllegalArgumentException("delegate == null");
        }
        this.f6536b = wVar;
    }

    @Override // h.w, java.io.Closeable, java.lang.AutoCloseable
    public void close() {
        this.f6536b.close();
    }

    @Override // h.w
    public y e() {
        return this.f6536b.e();
    }

    @Override // h.w, java.io.Flushable
    public void flush() {
        this.f6536b.flush();
    }

    public String toString() {
        return getClass().getSimpleName() + "(" + this.f6536b.toString() + ")";
    }
}
