- 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
32 lines
915 B
Java
32 lines
915 B
Java
package org.apache.http.message;
|
|
|
|
import org.apache.http.HttpRequest;
|
|
import org.apache.http.ProtocolVersion;
|
|
import org.apache.http.RequestLine;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class BasicHttpRequest extends AbstractHttpMessage implements HttpRequest {
|
|
public BasicHttpRequest(String str, String str2) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public BasicHttpRequest(String str, String str2, ProtocolVersion protocolVersion) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public BasicHttpRequest(RequestLine requestLine) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpMessage
|
|
public ProtocolVersion getProtocolVersion() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HttpRequest
|
|
public RequestLine getRequestLine() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|