Migrate annotation to androidx on ReCaptchaActivity

This commit is contained in:
Laurent Arnoud 2020-02-18 21:50:28 +01:00
parent ff493406cf
commit 831e9985e2
No known key found for this signature in database
GPG Key ID: A79DAB2374F95DD5
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ import android.webkit.WebViewClient;
import org.schabi.newpipe.util.ThemeHelper; import org.schabi.newpipe.util.ThemeHelper;
import javax.annotation.Nonnull; import androidx.annotation.NonNull;
/* /*
* Created by beneth <bmauduit@beneth.fr> on 06.12.16. * Created by beneth <bmauduit@beneth.fr> on 06.12.16.
@ -147,7 +147,7 @@ public class ReCaptchaActivity extends AppCompatActivity {
// add other methods to extract cookies here // add other methods to extract cookies here
} }
private void addYoutubeCookies(@Nonnull String cookies) { private void addYoutubeCookies(@NonNull String cookies) {
if (cookies.contains("s_gl=") || cookies.contains("goojf=") || cookies.contains("VISITOR_INFO1_LIVE=")) { if (cookies.contains("s_gl=") || cookies.contains("goojf=") || cookies.contains("VISITOR_INFO1_LIVE=")) {
// youtube seems to also need the other cookies: // youtube seems to also need the other cookies:
addCookie(cookies); addCookie(cookies);