Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit a50fccc

Browse files
committed
Removed debug prints
1 parent d725379 commit a50fccc

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/org/rascalmpl/core/library/lang/rascalcore/check/CheckerCommon.rsc

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,6 @@ str getModuleName(loc moduleLoc, PathConfig pcfg){
107107
if(!( rscFile || tplFile )){
108108
throw "Not a Rascal .src or .tpl file: <moduleLoc>";
109109
}
110-
111-
if(contains(modulePath, "Content")){
112-
println("Content");
113-
}
114110
115111
// Find matching .rsc file in source directories
116112
if(rscFile){
@@ -158,10 +154,6 @@ str getModuleName(loc moduleLoc, PathConfig pcfg){
158154
for(loc file <- find(dir, "tpl")){
159155
candidate = replaceFirst(file.path, dpath, "");
160156
<candidate, ext> = splitFileExtension(candidate);
161-
162-
if(contains(candidate, "Content")){
163-
println("Content");
164-
}
165157
while(candidate[0] == "/"){
166158
candidate = candidate[1..];
167159
}
@@ -461,9 +453,6 @@ ModuleStatus clearTModelCache(ModuleStatus ms){
461453
todo -= candidate;
462454
}
463455
for(candidate <- todo){
464-
// if(candidate == "analysis::grammar::Ambiguity"){
465-
// println("clearTModelCache");
466-
// }
467456
ms = removeTModel(candidate, ms, updateBOMneeded=true);
468457
ms.status[candidate] -= bom_update_needed();
469458
}

0 commit comments

Comments
 (0)