- 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
31 lines
1.1 KiB
Java
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 RFC2965DiscardAttributeHandler implements CookieAttributeHandler {
|
|
public RFC2965DiscardAttributeHandler() {
|
|
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!");
|
|
}
|
|
}
|