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

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-03-08 05:50:23 +00:00
parent d2047f3306
commit 6f33dd512d

View file

@ -46,7 +46,7 @@ public abstract class PDOMCPPBinding extends PDOMBinding implements ICPPBinding
PDOMNode node = this; PDOMNode node = this;
while (node != null) { while (node != null) {
if (node instanceof PDOMBinding && !(node instanceof ICPPTemplateInstance)) { if (node instanceof PDOMBinding && !(node instanceof ICPPTemplateInstance)) {
result.add(0, ((PDOMBinding)node).getName().toCharArray()); result.add(0, ((PDOMBinding) node).getName().toCharArray());
} }
node = node.getParentNode(); node = node.getParentNode();
} }