- 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
23 lines
663 B
Java
23 lines
663 B
Java
package org.apache.http;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public final class HttpVersion extends ProtocolVersion implements Serializable {
|
|
public static final String HTTP = "HTTP";
|
|
public static final HttpVersion HTTP_0_9 = null;
|
|
public static final HttpVersion HTTP_1_0 = null;
|
|
public static final HttpVersion HTTP_1_1 = null;
|
|
|
|
public HttpVersion(int i, int i2) {
|
|
super(null, 0, 0);
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.ProtocolVersion
|
|
public ProtocolVersion forVersion(int i, int i2) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|