- Removed added debug prints which were not needed actually

This commit is contained in:
Tristan B. Velloza Kildaire 2023-01-15 20:58:47 +02:00
parent 2abb28bcaf
commit aa11af5bba
1 changed files with 0 additions and 4 deletions

View File

@ -1461,8 +1461,6 @@ public final class TypeChecker
foreach (Entity entity; entities)
{
gprintln("checkEntty: "~to!(string)(entity is null));
/**
* Absolute root Container (in other words, the Module)
* can not be used
@ -1506,7 +1504,6 @@ public final class TypeChecker
Container possibleContainerEntity = cast(Container) entity;
if (possibleContainerEntity)
{
gprintln("checkContainer(c): Recursing on: "~to!(string)(possibleContainerEntity));
checkContainerCollision(possibleContainerEntity);
}
}
@ -1542,7 +1539,6 @@ public final class TypeChecker
/* Get all classes */
foreach (Statement statement; c.getStatements())
{
gprintln("getContainerMember: "~to!(string)(statement));
if (statement !is null && cast(Entity) statement)
{
entities ~= cast(Entity) statement;