1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Removed a superficial cast.

This commit is contained in:
Sergey Prigogin 2009-09-23 23:31:33 +00:00
parent f140f1a804
commit 18ce68fb9b

View file

@ -250,7 +250,7 @@ public class ProblemBinding extends PlatformObject implements IProblemBinding, I
} }
public IBinding getOwner() throws DOMException { public IBinding getOwner() throws DOMException {
return node instanceof IASTName ? CPPVisitor.findNameOwner((IASTName) node, true) : null; return node instanceof IASTName ? CPPVisitor.findNameOwner(node, true) : null;
} }
public void setASTNode(IASTName name) { public void setASTNode(IASTName name) {