Skip to content

Commit 42be60e

Browse files
committed
C#: Address codereview comments.
1 parent a8b103b commit 42be60e

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -740,15 +740,10 @@ private module Cached {
740740
)
741741
)
742742
} or
743-
TSummaryNode(
744-
FlowSummaryImpl::Public::SummarizedCallable c,
745-
FlowSummaryImpl::Private::SummaryNodeState state
746-
) {
747-
c instanceof DataFlowSummarizedCallable and
743+
TSummaryNode(DataFlowSummarizedCallable c, FlowSummaryImpl::Private::SummaryNodeState state) {
748744
FlowSummaryImpl::Private::summaryNodeRange(c, state)
749745
} or
750-
TSummaryParameterNode(FlowSummaryImpl::Public::SummarizedCallable c, ParameterPosition pos) {
751-
c instanceof DataFlowSummarizedCallable and
746+
TSummaryParameterNode(DataFlowSummarizedCallable c, ParameterPosition pos) {
752747
FlowSummaryImpl::Private::summaryParameterNodeRange(c, pos)
753748
} or
754749
TParamsArgumentNode(ControlFlow::Node callCfn) {

0 commit comments

Comments
 (0)