mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
FIXED bug # 82572
This commit is contained in:
parent
2758147c93
commit
dd9f4af843
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2005-01-11 David Inglis
|
||||||
|
|
||||||
|
Fixed NPE bug #82572
|
||||||
|
|
||||||
|
* src/org/eclipse/cdt/internal/core/CDescriptor.java
|
||||||
|
|
||||||
|
|
||||||
2005-01-07 Alain Magloire
|
2005-01-07 Alain Magloire
|
||||||
Fix PR 82202
|
Fix PR 82202
|
||||||
* model/org/eclipse/cdt/internal/core/model/CElement.java
|
* model/org/eclipse/cdt/internal/core/model/CElement.java
|
||||||
|
|
|
@ -560,7 +560,7 @@ public class CDescriptor implements ICDescriptor {
|
||||||
NodeList nodes = doc.getDocumentElement().getElementsByTagName(PROJECT_DATA_ITEM);
|
NodeList nodes = doc.getDocumentElement().getElementsByTagName(PROJECT_DATA_ITEM);
|
||||||
for (int i = 0; i < nodes.getLength(); ++i) {
|
for (int i = 0; i < nodes.getLength(); ++i) {
|
||||||
Element element = (Element)nodes.item(i);
|
Element element = (Element)nodes.item(i);
|
||||||
if (element.getAttribute(PROJECT_DATA_ID).equals(id))
|
if (element != null && element.getAttribute(PROJECT_DATA_ID).equals(id))
|
||||||
return element;
|
return element;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue