- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
22 lines
742 B
Java
22 lines
742 B
Java
package org.apache.http.impl.io;
|
|
|
|
import java.io.IOException;
|
|
import org.apache.http.HttpMessage;
|
|
import org.apache.http.io.SessionOutputBuffer;
|
|
import org.apache.http.message.LineFormatter;
|
|
import org.apache.http.params.HttpParams;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class HttpRequestWriter extends AbstractMessageWriter {
|
|
public HttpRequestWriter(SessionOutputBuffer sessionOutputBuffer, LineFormatter lineFormatter, HttpParams httpParams) {
|
|
super(null, null, null);
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.impl.io.AbstractMessageWriter
|
|
public void writeHeadLine(HttpMessage httpMessage) throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|