parent
02920fafa8
commit
ea120a4637
|
@ -311,7 +311,7 @@ public class BandcampStreamExtractor extends StreamExtractor {
|
|||
public List<String> getTags() {
|
||||
final Elements tagElements = document.getElementsByAttributeValue("itemprop", "keywords");
|
||||
|
||||
final ArrayList<String> tags = new ArrayList<>();
|
||||
final List<String> tags = new ArrayList<>();
|
||||
|
||||
for (final Element e : tagElements) {
|
||||
tags.add(e.text());
|
||||
|
|
|
@ -47,8 +47,6 @@ public class BandcampSuggestionExtractor extends SuggestionExtractor {
|
|||
|
||||
return suggestions;
|
||||
} catch (final JsonParserException e) {
|
||||
e.printStackTrace();
|
||||
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue