mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
More logging & NPE fix for IDEA-25704
This commit is contained in:
@@ -713,9 +713,11 @@ public abstract class DomInvocationHandler<T extends AbstractDomChildDescription
|
||||
final DomInvocationHandler semElement = myManager.getSemService().getSemElement(key, subTag);
|
||||
if (semElement == null) {
|
||||
myManager.getSemService().getSemElement(key, subTag);
|
||||
LOG.error("No child for subTag " + subTag.getName() + " in tag " + tag.getName());
|
||||
LOG.error("No child for subTag '" + subTag.getName() + "' in tag '" + tag.getName() +"' using key " + key);
|
||||
}
|
||||
else {
|
||||
elements.add(semElement.getProxy());
|
||||
}
|
||||
elements.add(semElement.getProxy());
|
||||
}
|
||||
return Collections.unmodifiableList(elements);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user