remove extraneous printing

This commit is contained in:
Julian Dolby 2013-03-03 19:43:45 -05:00
parent 6bb51a6e58
commit 7c3e13d09f
1 changed files with 0 additions and 10 deletions

View File

@ -941,14 +941,4 @@ public class JavaScriptLoader extends CAstAbstractModuleLoader {
protected boolean shouldTranslate(CAstEntity entity) {
return true;
}
@Override
protected void finishTranslation() {
Iterator<ModuleEntry> ms = getModulesWithParseErrors();
while (ms.hasNext()) {
ModuleEntry m = ms.next();
System.err.println(m);
System.err.println(getMessages(m));
}
}
}