removed Class Tournamenttest.java

This commit is contained in:
schrom01 2022-04-28 14:57:41 +02:00
parent 4b658b9ed9
commit 263d79ba8e
2 changed files with 1 additions and 8 deletions

View File

@ -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);

View File

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