Skip to content

Commit d728c4f

Browse files
committed
Remove unused imports
I searched for "StandardCharsets" to prevent possible bugs with Android KitKat. The import is unused and is therefor removed. There are other usages of the StandardCharsets class in the test implementation, but those are not relevant.
1 parent c00ee75 commit d728c4f

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeParsingHelper.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
package org.schabi.newpipe.extractor.services.youtube;
22

33
import com.grack.nanojson.*;
4-
import com.grack.nanojson.JsonArray;
5-
import com.grack.nanojson.JsonObject;
6-
import com.grack.nanojson.JsonParser;
7-
import com.grack.nanojson.JsonParserException;
8-
import com.grack.nanojson.JsonWriter;
9-
10-
import org.jsoup.Jsoup;
11-
import org.jsoup.nodes.Document;
124
import org.schabi.newpipe.extractor.MetaInfo;
135
import org.schabi.newpipe.extractor.Page;
146
import org.schabi.newpipe.extractor.downloader.Response;
@@ -28,7 +20,6 @@
2820
import java.net.MalformedURLException;
2921
import java.net.URL;
3022
import java.net.URLDecoder;
31-
import java.nio.charset.StandardCharsets;
3223
import java.time.LocalDate;
3324
import java.time.OffsetDateTime;
3425
import java.time.ZoneOffset;
@@ -38,10 +29,6 @@
3829
import static org.schabi.newpipe.extractor.NewPipe.getDownloader;
3930
import static org.schabi.newpipe.extractor.utils.JsonUtils.EMPTY_STRING;
4031
import static org.schabi.newpipe.extractor.utils.Utils.*;
41-
import static org.schabi.newpipe.extractor.utils.Utils.HTTP;
42-
import static org.schabi.newpipe.extractor.utils.Utils.HTTPS;
43-
import static org.schabi.newpipe.extractor.utils.Utils.isNullOrEmpty;
44-
import static org.schabi.newpipe.extractor.utils.Utils.join;
4532

4633
/*
4734
* Created by Christian Schabesberger on 02.03.16.

0 commit comments

Comments
 (0)