Merge branch 'FileIO' into FileIO_Test

This commit is contained in:
schrom01 2022-04-28 14:58:49 +02:00
commit 038030a3db
2 changed files with 1 additions and 8 deletions

View File

@ -16,7 +16,7 @@ public class App {
System.out.println(new App().getGreeting()); 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") + File.separator + "tournierverwaltung_angrynerds");
Tournament tournament= new Tournamenttest("helloo"); Tournament tournament= new Tournament("helloo");
io.saveTournament(tournament); io.saveTournament(tournament);

View File

@ -1,7 +0,0 @@
package ch.zhaw.projekt2.turnierverwaltung;
public class Tournamenttest extends Tournament {
public Tournamenttest(String name) {
super(name);
}
}