static final instead of final static
This commit is contained in:
parent
0c37c75981
commit
ef71a5fa0f
|
@ -6,9 +6,9 @@ import java.io.IOException;
|
|||
|
||||
public class DownloaderFactory {
|
||||
|
||||
public final static String RESOURCE_PATH = "src/test/resources/org/schabi/newpipe/extractor/";
|
||||
public static final String RESOURCE_PATH = "src/test/resources/org/schabi/newpipe/extractor/";
|
||||
|
||||
private final static DownloaderType DEFAULT_DOWNLOADER = DownloaderType.REAL;
|
||||
private static final DownloaderType DEFAULT_DOWNLOADER = DownloaderType.REAL;
|
||||
|
||||
public static DownloaderType getDownloaderType() {
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue