From 706d4271a612332f651c07c0ec71fa859d7b8987 Mon Sep 17 00:00:00 2001 From: Ritvik Saraf <13ritvik@gmail.com> Date: Fri, 12 Oct 2018 12:45:09 +0530 Subject: [PATCH] empty suggestions for search --- .../peertube/extractors/PeertubeSuggestionExtractor.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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(); } }