Skip to content

Commit ef71a5f

Browse files
committed
static final instead of final static
1 parent 0c37c75 commit ef71a5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extractor/src/test/java/org/schabi/newpipe/downloader/DownloaderFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
public class DownloaderFactory {
88

9-
public final static String RESOURCE_PATH = "src/test/resources/org/schabi/newpipe/extractor/";
9+
public static final String RESOURCE_PATH = "src/test/resources/org/schabi/newpipe/extractor/";
1010

11-
private final static DownloaderType DEFAULT_DOWNLOADER = DownloaderType.REAL;
11+
private static final DownloaderType DEFAULT_DOWNLOADER = DownloaderType.REAL;
1212

1313
public static DownloaderType getDownloaderType() {
1414
try {

0 commit comments

Comments
 (0)