Merge branch 'FileIO' into FileIO_Test

This commit is contained in:
schrom01
2022-04-28 14:58:49 +02:00
2 changed files with 1 additions and 8 deletions
@@ -16,7 +16,7 @@ public class App {
System.out.println(new App().getGreeting());
FileIO io = new FileIO(System.getProperty("user.dir") + File.separator + "tournierverwaltung_angrynerds");
Tournament tournament= new Tournamenttest("helloo");
Tournament tournament= new Tournament("helloo");
io.saveTournament(tournament);
@@ -1,7 +0,0 @@
package ch.zhaw.projekt2.turnierverwaltung;
public class Tournamenttest extends Tournament {
public Tournamenttest(String name) {
super(name);
}
}