diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/peertube/extractors/PeertubeSuggestionExtractor.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/peertube/extractors/PeertubeSuggestionExtractor.java index ec36fc83..200d633a 100644 --- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/peertube/extractors/PeertubeSuggestionExtractor.java +++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/peertube/extractors/PeertubeSuggestionExtractor.java @@ -1,6 +1,7 @@ package org.schabi.newpipe.extractor.services.peertube.extractors; import java.io.IOException; +import java.util.Collections; import java.util.List; import org.schabi.newpipe.extractor.SuggestionExtractor; @@ -11,13 +12,11 @@ public class PeertubeSuggestionExtractor extends SuggestionExtractor{ public PeertubeSuggestionExtractor(int serviceId, Localization localization) { super(serviceId, localization); - // TODO Auto-generated constructor stub } @Override public List suggestionList(String query) throws IOException, ExtractionException { - // TODO Auto-generated method stub - return null; + return Collections.emptyList(); } }