Files
rr3-apk/decompiled-community/sources/org/apache/http/ProtocolVersion.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

64 lines
1.6 KiB
Java

package org.apache.http;
import java.io.Serializable;
@Deprecated
/* loaded from: classes5.dex */
public class ProtocolVersion implements Serializable {
protected final int major;
protected final int minor;
protected final String protocol;
public ProtocolVersion(String str, int i, int i2) {
throw new RuntimeException("Stub!");
}
public final String getProtocol() {
throw new RuntimeException("Stub!");
}
public final int getMajor() {
throw new RuntimeException("Stub!");
}
public final int getMinor() {
throw new RuntimeException("Stub!");
}
public ProtocolVersion forVersion(int i, int i2) {
throw new RuntimeException("Stub!");
}
public final int hashCode() {
throw new RuntimeException("Stub!");
}
public final boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
public boolean isComparable(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public int compareToVersion(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public final boolean greaterEquals(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public final boolean lessEquals(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}