File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
csharp/ql/src/semmle/code/csharp/dataflow/internal Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,14 +47,14 @@ class Node extends TNode {
47
47
cached
48
48
final DataFlowCallable getEnclosingCallable ( ) {
49
49
Stages:: DataFlowStage:: forceCachingInSameStage ( ) and
50
- result = unique ( DataFlowCallable c | c = this .( NodeImpl ) .getEnclosingCallableImpl ( ) | c )
50
+ result = this .( NodeImpl ) .getEnclosingCallableImpl ( )
51
51
}
52
52
53
53
/** Gets the control flow node corresponding to this node, if any. */
54
54
cached
55
55
final ControlFlow:: Node getControlFlowNode ( ) {
56
56
Stages:: DataFlowStage:: forceCachingInSameStage ( ) and
57
- result = unique ( ControlFlow :: Node n | n = this .( NodeImpl ) .getControlFlowNodeImpl ( ) | n )
57
+ result = this .( NodeImpl ) .getControlFlowNodeImpl ( )
58
58
}
59
59
60
60
/** Gets a textual representation of this node. */
You can’t perform that action at this time.
0 commit comments