mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Removed a superficial cast.
This commit is contained in:
parent
f140f1a804
commit
18ce68fb9b
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ public class ProblemBinding extends PlatformObject implements IProblemBinding, I
|
|||
}
|
||||
|
||||
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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue