diff --git a/Sources/Model/Games/GameRunner.cs b/Sources/Model/Games/GameRunner.cs
index e9793be..eb24f80 100644
--- a/Sources/Model/Games/GameRunner.cs
+++ b/Sources/Model/Games/GameRunner.cs
@@ -49,7 +49,6 @@ namespace Model.Games
/// saves a given game -- does not allow copies yet: if a game with the same name exists, it is overwritten
///
/// a game to save
- ///
public Game Add(Game toAdd)
{
if (toAdd is null)
@@ -66,7 +65,6 @@ namespace Model.Games
///
/// creates a new game
///
- ///
public Game StartNewGame(string name, IManager playerManager, IEnumerable> dice)
{
Game game = new(name, playerManager, dice);