- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
84 lines
2.4 KiB
Java
84 lines
2.4 KiB
Java
package org.apache.http.message;
|
|
|
|
import java.util.Locale;
|
|
import org.apache.http.HttpEntity;
|
|
import org.apache.http.HttpResponse;
|
|
import org.apache.http.ProtocolVersion;
|
|
import org.apache.http.ReasonPhraseCatalog;
|
|
import org.apache.http.StatusLine;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class BasicHttpResponse extends AbstractHttpMessage implements HttpResponse {
|
|
public BasicHttpResponse(StatusLine statusLine, ReasonPhraseCatalog reasonPhraseCatalog, Locale locale) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public BasicHttpResponse(StatusLine statusLine) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public BasicHttpResponse(ProtocolVersion protocolVersion, int i, String str) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpMessage
|
|
public ProtocolVersion getProtocolVersion() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public StatusLine getStatusLine() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public HttpEntity getEntity() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public Locale getLocale() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public void setStatusLine(StatusLine statusLine) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public void setStatusLine(ProtocolVersion protocolVersion, int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public void setStatusLine(ProtocolVersion protocolVersion, int i, String str) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public void setStatusCode(int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public void setReasonPhrase(String str) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public void setEntity(HttpEntity httpEntity) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpResponse
|
|
public void setLocale(Locale locale) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public String getReason(int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|