Skip to content

Commit 04463a9

Browse files
Rearranged order of fields
1 parent 0578bbc commit 04463a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/edu/ie3/datamodel/utils/FileUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ public class FileUtils {
2121
"^(?<fileName>[^\\\\/\\s.]{0,255})(?:\\.(?<extension>[a-zA-Z0-9]{0,10}(?:\\.[a-zA-Z0-9]{0,10})?))?$");
2222
private static final String CSV_FILE_EXTENSION = "csv";
2323

24+
private static final Logger logger = LoggerFactory.getLogger(FileUtils.class);
25+
2426
private FileUtils() {
2527
throw new IllegalStateException("Utility classes cannot be instantiated");
2628
}
2729

28-
private static final Logger logger = LoggerFactory.getLogger(FileUtils.class);
29-
3030
/**
3131
* Method to get a {@link Path} from a filename and an option of a directory path.
3232
*

0 commit comments

Comments
 (0)