From 63a37c48e3bfce4f2a0bb2472fda4afd75f8903a Mon Sep 17 00:00:00 2001 From: Stypox Date: Wed, 11 Sep 2019 19:31:39 +0200 Subject: [PATCH] Remove println left behind --- .../services/youtube/extractors/YoutubeStreamExtractor.java | 1 - 1 file changed, 1 deletion(-) diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java index 08bf50582..32fe8d8bb 100644 --- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java +++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java @@ -952,7 +952,6 @@ public class YoutubeStreamExtractor extends StreamExtractor { ItagItem itagItem = ItagItem.getItag(itag); if (itagItem.itagType == itagTypeWanted) { String streamUrl = formatData.getString("url"); - System.out.println(streamUrl); urlAndItags.put(streamUrl, itagItem); } }