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:
parent
044af29ec9
commit
795d676119
2 changed files with 7 additions and 1 deletions
|
@ -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.
|
||||
|
||||
|
|
|
@ -657,7 +657,7 @@ public class CProject extends Openable implements ICProject {
|
|||
if (!isCProject()) {
|
||||
return false;
|
||||
}
|
||||
return super.exists();
|
||||
return true;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
|
Loading…
Add table
Reference in a new issue