Dataflow: Use default fieldFlowBranchLimit in qltests.

This commit is contained in:
Anders Schack-Mulligen
2024-02-21 12:09:30 +01:00
parent f945687a93
commit b87b8329a0
5 changed files with 0 additions and 10 deletions

View File

@@ -18,8 +18,6 @@ module ValueFlowConfig implements DataFlow::ConfigSig {
predicate isSink(DataFlow::Node n) {
exists(MethodCall ma | ma.getMethod().hasName("sink") | n.asExpr() = ma.getAnArgument())
}
int fieldFlowBranchLimit() { result = 100 }
}
module ValueFlow = DataFlow::Global<ValueFlowConfig>;