C#/Java: Remove redudandant QL comment in CaptureModel.

This commit is contained in:
Michael Nebel
2022-05-09 07:36:41 +02:00
parent 5f1a176a02
commit 83aa65ff53
2 changed files with 0 additions and 20 deletions

View File

@@ -125,16 +125,6 @@ private class TaintStore extends DataFlow::FlowState {
* The sources are the parameters of an API and the sinks are the return values (excluding `this`) and parameters.
*
* This can be used to generate Flow summaries for APIs from parameter to return.
*
* * We track at most two reads and at most two stores, meaning flow paths of the form
*
* ```
* parameter --value -->* node --read -->?
* node --taint -->* node --read -->?
* node --taint -->* node --store -->?
* node --taint -->* node --store -->?
* node --taint-->* return
* ```
*/
private class ThroughFlowConfig extends TaintTracking::Configuration {
ThroughFlowConfig() { this = "ThroughFlowConfig" }