From a59fead0d78b6c3e1f0f994ae8959d91917add10 Mon Sep 17 00:00:00 2001 From: litetex <40789489+litetex@users.noreply.github.com> Date: Sun, 13 Jun 2021 22:06:09 +0200 Subject: [PATCH] Fixed typos --- .../services/youtube/extractors/YoutubeCommentsExtractor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeCommentsExtractor.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeCommentsExtractor.java index a4b225242..442c90c20 100644 --- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeCommentsExtractor.java +++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeCommentsExtractor.java @@ -55,7 +55,7 @@ public class YoutubeCommentsExtractor extends CommentsExtractor { public InfoItemsPage getInitialPage() throws IOException, ExtractionException { - // Check if the the findInitialCommentsToken was already called and initialized + // Check if findInitialCommentsToken was already called and optCommentsDisabled initialized if (optCommentsDisabled.orElse(false)) { return getInfoItemsPageForDisabledComments(); } @@ -72,7 +72,7 @@ public class YoutubeCommentsExtractor extends CommentsExtractor { /** * Finds the initial comments token and initializes commentsDisabled. - * @return + * @return the continuation token or null if none was found */ private String findInitialCommentsToken() { final String continuationStartPattern = "continuation\":\"";