Files
rr3-apk/decompiled-community/sources/org/apache/http/message/BasicHeaderValueFormatter.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

82 lines
3.0 KiB
Java

package org.apache.http.message;
import org.apache.http.HeaderElement;
import org.apache.http.NameValuePair;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHeaderValueFormatter implements HeaderValueFormatter {
public static final BasicHeaderValueFormatter DEFAULT = null;
public static final String SEPARATORS = " ;,:@()<>\\\"/[]?={}\t";
public static final String UNSAFE_CHARS = "\"\\";
public BasicHeaderValueFormatter() {
throw new RuntimeException("Stub!");
}
public static final String formatElements(HeaderElement[] headerElementArr, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatElements(CharArrayBuffer charArrayBuffer, HeaderElement[] headerElementArr, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateElementsLen(HeaderElement[] headerElementArr) {
throw new RuntimeException("Stub!");
}
public static final String formatHeaderElement(HeaderElement headerElement, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatHeaderElement(CharArrayBuffer charArrayBuffer, HeaderElement headerElement, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateHeaderElementLen(HeaderElement headerElement) {
throw new RuntimeException("Stub!");
}
public static final String formatParameters(NameValuePair[] nameValuePairArr, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatParameters(CharArrayBuffer charArrayBuffer, NameValuePair[] nameValuePairArr, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateParametersLen(NameValuePair[] nameValuePairArr) {
throw new RuntimeException("Stub!");
}
public static final String formatNameValuePair(NameValuePair nameValuePair, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatNameValuePair(CharArrayBuffer charArrayBuffer, NameValuePair nameValuePair, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateNameValuePairLen(NameValuePair nameValuePair) {
throw new RuntimeException("Stub!");
}
public void doFormatValue(CharArrayBuffer charArrayBuffer, String str, boolean z) {
throw new RuntimeException("Stub!");
}
public boolean isSeparator(char c) {
throw new RuntimeException("Stub!");
}
public boolean isUnsafe(char c) {
throw new RuntimeException("Stub!");
}
}