/**
  * Removes all the info associated with a given module
  *
  * @param moduleName the name of the module we want to remove info from
  */
 public void removeInfoFromModule(String moduleName, boolean generateDelta) {
   if (DebugSettings.DEBUG_ANALYSIS_REQUESTS) {
     Log.toLogFile(this, "Removing ast info from: " + moduleName);
   }
   synchronized (lock) {
     removeInfoFromMap(moduleName, topLevelInitialsToInfo);
     removeInfoFromMap(moduleName, innerInitialsToInfo);
   }
 }