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

preformance improvment for CModel

This commit is contained in:
David Inglis 2005-05-25 19:50:52 +00:00
parent 044af29ec9
commit 795d676119
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2005-05-25 David Inglis
CModel performance improvement: only need to test project existance and nature for ICElement.exists()
* model/org/eclipse/cdt/internal/core/model/CProject.java
2005-05-20 Vladimir Hirsl
Indexer performance improvement: indexing nodes from external include files only once.

View file

@ -657,7 +657,7 @@ public class CProject extends Openable implements ICProject {
if (!isCProject()) {
return false;
}
return super.exists();
return true;
}
/* (non-Javadoc)