Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/main/java/com/nlstn/jmediaOrganizer/JMediaOrganizer.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.nlstn.jmediaOrganizer;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
Expand Down Expand Up @@ -56,7 +55,7 @@ public class JMediaOrganizer {
/**
* The currently chosen input folder, or null, if no input folder was chosen
*/
private static File inputFolder = null;
private static Path inputFolder = null;

public static void main(String[] args) {
Settings.loadSettings();
Expand All @@ -81,11 +80,11 @@ public static Window getWindow() {
return window;
}

public static File getInputFolder() {
public static Path getInputFolder() {
return inputFolder;
}

public static void setInputFolder(File inputFolder) {
public static void setInputFolder(Path inputFolder) {
JMediaOrganizer.inputFolder = inputFolder;
}

Expand Down
Loading