- 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
27 lines
665 B
Java
27 lines
665 B
Java
package org.apache.http.client.methods;
|
|
|
|
import java.net.URI;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class HttpPost extends HttpEntityEnclosingRequestBase {
|
|
public static final String METHOD_NAME = "POST";
|
|
|
|
public HttpPost() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public HttpPost(URI uri) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public HttpPost(String str) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.client.methods.HttpRequestBase, org.apache.http.client.methods.HttpUriRequest
|
|
public String getMethod() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|