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 {
109
109
/** Holds if taint propagation into `node` is prohibited. */
110
110
predicate isSanitizerIn ( DataFlow:: Node node ) { none ( ) }
111
111
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
-
122
112
final override predicate isBarrierIn ( DataFlow:: Node node ) { this .isSanitizerIn ( node ) }
123
113
124
114
/** Holds if taint propagation out of `node` is prohibited. */
125
115
predicate isSanitizerOut ( DataFlow:: Node node ) { none ( ) }
126
116
127
117
final override predicate isBarrierOut ( DataFlow:: Node node ) { this .isSanitizerOut ( node ) }
128
118
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
-
139
119
/** Holds if taint propagation through nodes guarded by `guard` is prohibited. */
140
120
predicate isSanitizerGuard ( DataFlow:: BarrierGuard guard ) { none ( ) }
141
121
You can’t perform that action at this time.
0 commit comments