1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Bug 125561: ClassCastException in Modules view.

This commit is contained in:
Mikhail Khodjaiants 2006-01-27 20:49:45 +00:00
parent 713fef5b08
commit 037c32a015
2 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2006-01-27 Mikhail Khodjaiants
Bug 125561: ClassCastException in Modules view.
* ModulesView.java
2006-01-22 Mikhail Khodjaiants
Bug 60682: No schema for CDebuggerPage extension point.
* plugin.xml

View file

@ -12,7 +12,6 @@ package org.eclipse.cdt.debug.internal.ui.views.modules;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import org.eclipse.cdt.core.IAddress;
import org.eclipse.cdt.core.model.ICElement;
import org.eclipse.cdt.debug.core.model.ICDebugTarget;
@ -913,8 +912,7 @@ public class ModulesView extends AbstractDebugView implements IDebugContextListe
private void disposeImageCache() {
Iterator it = fImageCache.values().iterator();
while( it.hasNext() ) {
Map.Entry entry = (Map.Entry)it.next();
((Image)entry.getValue()).dispose();
((Image)it.next()).dispose();
}
fImageCache.clear();
}