- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
39 lines
1.1 KiB
Java
39 lines
1.1 KiB
Java
package org.apache.http.impl.io;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import org.apache.http.Header;
|
|
import org.apache.http.io.SessionInputBuffer;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class ChunkedInputStream extends InputStream {
|
|
public ChunkedInputStream(SessionInputBuffer sessionInputBuffer) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // java.io.InputStream
|
|
public int read() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // java.io.InputStream
|
|
public int read(byte[] bArr, int i, int i2) throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // java.io.InputStream
|
|
public int read(byte[] bArr) throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // java.io.InputStream, java.io.Closeable, java.lang.AutoCloseable
|
|
public void close() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public Header[] getFooters() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|