- 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
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!");
|
|
}
|
|
}
|