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

31 lines
1.1 KiB
Java

package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2965CommentUrlAttributeHandler implements CookieAttributeHandler {
public RFC2965CommentUrlAttributeHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}