- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
30 lines
870 B
Java
30 lines
870 B
Java
package org.apache.http.util;
|
|
|
|
import java.io.IOException;
|
|
import org.apache.http.HttpEntity;
|
|
import org.apache.http.ParseException;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public final class EntityUtils {
|
|
public EntityUtils() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static byte[] toByteArray(HttpEntity httpEntity) throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static String getContentCharSet(HttpEntity httpEntity) throws ParseException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static String toString(HttpEntity httpEntity, String str) throws IOException, ParseException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public static String toString(HttpEntity httpEntity) throws IOException, ParseException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|