1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

2004-09-21 Alain Magloire

Duplication in the CView ILibraryReferece.
	* src/org/eclipse/cdt/internal/ui/cview/CViewContentProvider.java
This commit is contained in:
Alain Magloire 2004-09-21 18:27:55 +00:00
parent cf9a72a6da
commit 8ec09a9e37
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2004-09-21 Alain Magloire
Duplication in the CView ILibraryReferece.
* src/org/eclipse/cdt/internal/ui/cview/CViewContentProvider.java
2004-09-16 Chris Wiebe
refactor messages out of internal.ui.search.CSearchMessages

View file

@ -61,9 +61,12 @@ public class CViewContentProvider extends CElementContentProvider {
extras = getArchives((IArchiveContainer)element);
} else if (element instanceof IIncludeReference) {
extras = getIncludeReferenceChildren((IIncludeReference)element);
} else if (element instanceof ILibraryReference) {
extras = ((ILibraryReference)element).getChildren();
}
/*
* Do not to this for now, since ILibraryReference is an Archive.
else if (element instanceof ILibraryReference) {
extras = ((ILibraryReference)element).getChildren();
}*/
} catch (CModelException e) {
extras = null;
}