Skip to content

Commit a8b103b

Browse files
committed
Java: Update dependencies.
1 parent 94664f1 commit a8b103b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

java/ql/test/library-tests/dataflow/external-models/steps.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ class SummaryModelTest extends SummaryModelCsv {
2222
}
2323

2424
from DataFlow::Node node1, DataFlow::Node node2
25-
where FlowSummaryImpl::Private::Steps::summaryThroughStepTaint(node1, node2)
25+
where FlowSummaryImpl::Private::Steps::summaryThroughStepTaint(node1, node2, _)
2626
select node1, node2

java/ql/test/library-tests/dataflow/local-additional-taint/localAdditionalTaintStep.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ from DataFlow::Node src, DataFlow::Node sink
1616
where
1717
(
1818
localAdditionalTaintStep(src, sink) or
19-
FlowSummaryImpl::Private::Steps::summaryThroughStepTaint(src, sink)
19+
FlowSummaryImpl::Private::Steps::summaryThroughStepTaint(src, sink, _)
2020
) and
2121
not FlowSummaryImpl::Private::Steps::summaryLocalStep(src, sink, false) and
2222
not FlowSummaryImpl::Private::Steps::summaryReadStep(src, _, sink) and

0 commit comments

Comments
 (0)