From a50fccca62cb29b2a31ba9c33370eda9587fb5a5 Mon Sep 17 00:00:00 2001 From: paulklint Date: Fri, 13 Dec 2024 17:40:58 +0100 Subject: [PATCH] Removed debug prints --- .../library/lang/rascalcore/check/CheckerCommon.rsc | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/org/rascalmpl/core/library/lang/rascalcore/check/CheckerCommon.rsc b/src/org/rascalmpl/core/library/lang/rascalcore/check/CheckerCommon.rsc index 34c40de5..827534e9 100644 --- a/src/org/rascalmpl/core/library/lang/rascalcore/check/CheckerCommon.rsc +++ b/src/org/rascalmpl/core/library/lang/rascalcore/check/CheckerCommon.rsc @@ -107,10 +107,6 @@ str getModuleName(loc moduleLoc, PathConfig pcfg){ if(!( rscFile || tplFile )){ throw "Not a Rascal .src or .tpl file: "; } - - if(contains(modulePath, "Content")){ - println("Content"); - } // Find matching .rsc file in source directories if(rscFile){ @@ -158,10 +154,6 @@ str getModuleName(loc moduleLoc, PathConfig pcfg){ for(loc file <- find(dir, "tpl")){ candidate = replaceFirst(file.path, dpath, ""); = splitFileExtension(candidate); - - if(contains(candidate, "Content")){ - println("Content"); - } while(candidate[0] == "/"){ candidate = candidate[1..]; } @@ -461,9 +453,6 @@ ModuleStatus clearTModelCache(ModuleStatus ms){ todo -= candidate; } for(candidate <- todo){ - // if(candidate == "analysis::grammar::Ambiguity"){ - // println("clearTModelCache"); - // } ms = removeTModel(candidate, ms, updateBOMneeded=true); ms.status[candidate] -= bom_update_needed(); }