C#: Remove redundant cast

This commit is contained in:
Tom Hvitved
2019-01-02 10:09:24 +01:00
parent 5879e58741
commit 2427f0ada9

View File

@@ -509,7 +509,7 @@ class AssignableDefinition extends TAssignableDefinition {
cfn = result.getAControlFlowNode() |
exists(Ssa::ExplicitDefinition def |
result = def.getAFirstReadAtNode(cfn) |
this = def.(Ssa::ExplicitDefinition).getADefinition()
this = def.getADefinition()
)
)
}