added generic

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@4134 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
msridhar1 2011-04-21 21:34:06 +00:00
parent 3eda14a1a6
commit 4f27f73bf0
1 changed files with 2 additions and 2 deletions

View File

@ -189,8 +189,8 @@ public abstract class CAstAbstractModuleLoader extends CAstAbstractLoader {
* in topLevelEntities
*/
private void translateModuleToCAst(Module module, CAst ast, Set<Pair<CAstEntity, ModuleEntry>> topLevelEntities) {
for (Iterator mes = module.getEntries(); mes.hasNext();) {
translateModuleEntryToCAst((ModuleEntry) mes.next(), ast, topLevelEntities);
for (Iterator<ModuleEntry> mes = module.getEntries(); mes.hasNext();) {
translateModuleEntryToCAst(mes.next(), ast, topLevelEntities);
}
}