static final instead of final static
This commit is contained in:
parent
0c37c75981
commit
ef71a5fa0f
1 changed files with 2 additions and 2 deletions
|
@ -6,9 +6,9 @@ import java.io.IOException;
|
||||||
|
|
||||||
public class DownloaderFactory {
|
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() {
|
public static DownloaderType getDownloaderType() {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue