Fixing squid:S1319 - Declarations should use Java collection interfaces such as "List" rather than specific implementation.
This commit is contained in:
parent
049b36b1b6
commit
13346ab750
6 changed files with 16 additions and 14 deletions
|
|
@ -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{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue