changed Path Separator

This commit is contained in:
schrom01
2022-04-29 16:09:44 +02:00
parent cff22e9253
commit 90f6855a15
2 changed files with 6 additions and 6 deletions
@@ -15,6 +15,6 @@ public class App {
public static void main(String[] args) {
System.out.println(new App().getGreeting());
FileIO io = new FileIO(System.getProperty("user.dir") + File.separator + "tournierverwaltung_angrynerds");
FileIO io = new FileIO(System.getProperty("user.dir") + "/tournierverwaltung_angrynerds");
}
}