Remove logging statement
All checks were successful
E2E Testing / test (push) Successful in 1m37s

This commit is contained in:
Sebastian Böckelmann 2024-03-22 08:20:42 +01:00
parent 86fb22e701
commit 40680006e6

View File

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