From 40680006e63208b53dfd1be1bd6a3ea320cadf88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20B=C3=B6ckelmann?= Date: Fri, 22 Mar 2024 08:20:42 +0100 Subject: [PATCH] Remove logging statement --- src/app/project/game-model/GameModel.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/project/game-model/GameModel.ts b/src/app/project/game-model/GameModel.ts index 625d3d2..66dd46c 100644 --- a/src/app/project/game-model/GameModel.ts +++ b/src/app/project/game-model/GameModel.ts @@ -52,7 +52,6 @@ export class GameModel { const parentProductGamesystem = ProductGamesystem.constructFromSimpleGamesystem(parentGamesystem, this); parentProductGamesystem.addChildGamesystem(simpleGamesystem); simpleGamesystem.parentGamesystem = parentProductGamesystem; - console.log("The parent of my parent is ", parentProductGamesystem.parentGamesystem!.componentName) } else { const productParentGamesystem = parentGamesystem as ProductGamesystem; productParentGamesystem.addChildGamesystem(simpleGamesystem);