File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed
java/ql/lib/semmle/code/java/dataflow/internal/tainttracking3 Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -109,33 +109,13 @@ abstract class Configuration extends DataFlow::Configuration {
109109 /** Holds if taint propagation into `node` is prohibited. */
110110 predicate isSanitizerIn ( DataFlow:: Node node ) { none ( ) }
111111
112- /**
113- * Holds if taint propagation into `node` is prohibited when the flow state is
114- * `state`.
115- */
116- predicate isSanitizerIn ( DataFlow:: Node node , DataFlow:: FlowState state ) { none ( ) }
117-
118- final override predicate isBarrierIn ( DataFlow:: Node node , DataFlow:: FlowState state ) {
119- this .isSanitizerIn ( node , state )
120- }
121-
122112 final override predicate isBarrierIn ( DataFlow:: Node node ) { this .isSanitizerIn ( node ) }
123113
124114 /** Holds if taint propagation out of `node` is prohibited. */
125115 predicate isSanitizerOut ( DataFlow:: Node node ) { none ( ) }
126116
127117 final override predicate isBarrierOut ( DataFlow:: Node node ) { this .isSanitizerOut ( node ) }
128118
129- /**
130- * Holds if taint propagation out of `node` is prohibited when the flow state is
131- * `state`.
132- */
133- predicate isSanitizerOut ( DataFlow:: Node node , DataFlow:: FlowState state ) { none ( ) }
134-
135- final override predicate isBarrierOut ( DataFlow:: Node node , DataFlow:: FlowState state ) {
136- this .isSanitizerOut ( node , state )
137- }
138-
139119 /** Holds if taint propagation through nodes guarded by `guard` is prohibited. */
140120 predicate isSanitizerGuard ( DataFlow:: BarrierGuard guard ) { none ( ) }
141121
You can’t perform that action at this time.
0 commit comments