Files
rr3-apk/decompiled-community/sources/org/apache/http/impl/cookie/AbstractCookieSpec.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

30 lines
866 B
Java

package org.apache.http.impl.cookie;
import java.util.Collection;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieSpec;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractCookieSpec implements CookieSpec {
public AbstractCookieSpec() {
throw new RuntimeException("Stub!");
}
public void registerAttribHandler(String str, CookieAttributeHandler cookieAttributeHandler) {
throw new RuntimeException("Stub!");
}
public CookieAttributeHandler findAttribHandler(String str) {
throw new RuntimeException("Stub!");
}
public CookieAttributeHandler getAttribHandler(String str) {
throw new RuntimeException("Stub!");
}
public Collection<CookieAttributeHandler> getAttribHandlers() {
throw new RuntimeException("Stub!");
}
}