Files
rr3-apk/decompiled/sources/org/apache/http/util/CharArrayBuffer.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

102 lines
2.3 KiB
Java

package org.apache.http.util;
@Deprecated
/* loaded from: classes5.dex */
public final class CharArrayBuffer {
public CharArrayBuffer(int i) {
throw new RuntimeException("Stub!");
}
public void append(char[] cArr, int i, int i2) {
throw new RuntimeException("Stub!");
}
public void append(String str) {
throw new RuntimeException("Stub!");
}
public void append(CharArrayBuffer charArrayBuffer, int i, int i2) {
throw new RuntimeException("Stub!");
}
public void append(CharArrayBuffer charArrayBuffer) {
throw new RuntimeException("Stub!");
}
public void append(char c) {
throw new RuntimeException("Stub!");
}
public void append(byte[] bArr, int i, int i2) {
throw new RuntimeException("Stub!");
}
public void append(ByteArrayBuffer byteArrayBuffer, int i, int i2) {
throw new RuntimeException("Stub!");
}
public void append(Object obj) {
throw new RuntimeException("Stub!");
}
public void clear() {
throw new RuntimeException("Stub!");
}
public char[] toCharArray() {
throw new RuntimeException("Stub!");
}
public char charAt(int i) {
throw new RuntimeException("Stub!");
}
public char[] buffer() {
throw new RuntimeException("Stub!");
}
public int capacity() {
throw new RuntimeException("Stub!");
}
public int length() {
throw new RuntimeException("Stub!");
}
public void ensureCapacity(int i) {
throw new RuntimeException("Stub!");
}
public void setLength(int i) {
throw new RuntimeException("Stub!");
}
public boolean isEmpty() {
throw new RuntimeException("Stub!");
}
public boolean isFull() {
throw new RuntimeException("Stub!");
}
public int indexOf(int i, int i2, int i3) {
throw new RuntimeException("Stub!");
}
public int indexOf(int i) {
throw new RuntimeException("Stub!");
}
public String substring(int i, int i2) {
throw new RuntimeException("Stub!");
}
public String substringTrimmed(int i, int i2) {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
}