1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-10-27 05:17:38 +00:00

Merge pull request #321 from DevFactory/release/collection-interfaces-should-be-used-fix-1

Code quality fix - Declarations should use Java collection interfaces such as "List" rather than specific implementation.
This commit is contained in:
Christian Schabesberger
2016-07-25 00:46:33 +02:00
committed by GitHub
6 changed files with 16 additions and 14 deletions

View File

@@ -11,7 +11,7 @@ import org.schabi.newpipe.Downloader;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Christian Schabesberger on 29.12.15.
@@ -35,7 +35,7 @@ import java.util.ArrayList;
public class YoutubeSearchEngineTest extends AndroidTestCase {
private SearchResult result;
private ArrayList<String> suggestionReply;
private List<String> suggestionReply;
@Override
public void setUp() throws Exception{