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