1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 173792: Modules view needs to catch up with 3.3M5. Cleanup.

This commit is contained in:
Mikhail Khodjaiants 2007-02-11 23:21:39 +00:00
parent 7ad1539548
commit 75ab77d311

View file

@ -18,14 +18,12 @@ import org.eclipse.cdt.debug.internal.ui.views.modules.ModuleProxyFactory;
import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IElementContentProvider;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactoryAdapter;
import org.eclipse.debug.internal.ui.viewers.provisional.IAsynchronousLabelAdapter;
/**
* Comment for .
*/
public class CDebugElementAdapterFactory implements IAdapterFactory {
// private static IAsynchronousLabelAdapter fgModuleLabelAdapter = new AsynchronousDebugLabelAdapter();
private static IElementContentProvider fgModuleContentProvider = new ModuleContentProvider();
private static IModelProxyFactoryAdapter fgModuleProxyFactory = new ModuleProxyFactory();
@ -62,7 +60,6 @@ public class CDebugElementAdapterFactory implements IAdapterFactory {
public Class[] getAdapterList() {
return new Class[] {
IElementContentProvider.class,
IAsynchronousLabelAdapter.class,
IModelProxyFactoryAdapter.class
};
}