Skip to content

Commit ce8a20c

Browse files
committed
Fix variable name (source should be sink)
1 parent ab276fc commit ce8a20c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/lib/semmle/code/java/dataflow/internal/DataFlowImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ abstract class Configuration extends string {
7070
/**
7171
* Holds if `sink` is a relevant data flow sink accepting `state`.
7272
*/
73-
predicate isSink(Node source, FlowState state) { none() }
73+
predicate isSink(Node sink, FlowState state) { none() }
7474

7575
/**
7676
* Holds if data flow through `node` is prohibited. This completely removes

0 commit comments

Comments
 (0)