Ver código fonte

Applied patch for bug#77799 "NullPointerException in StructureSearchManager"

tags/V1_2_1
mkersten 19 anos atrás
pai
commit
aab9c2c57d

+ 1
- 1
ajde/src/org/aspectj/ajde/ui/StructureSearchManager.java Ver arquivo

@@ -55,7 +55,7 @@ public class StructureSearchManager {
matches.add(node);
}
}
if (node.getChildren() != null) {
if (node != null && node.getChildren() != null) {
for (Iterator it = node.getChildren().iterator(); it.hasNext(); ) {
IProgramElement nextNode = (IProgramElement)it.next();
if (nextNode instanceof IProgramElement) {

Carregando…
Cancelar
Salvar