File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
ruby/ql/lib/codeql/ruby/experimental Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,19 @@ private import codeql.ruby.TaintTracking
9
9
private import codeql.ruby.ApiGraphs
10
10
import UnicodeBypassValidationCustomizations:: UnicodeBypassValidation
11
11
12
- /** A state signifying that a logical validation has not been performed. */
13
- class PreValidation extends DataFlow:: FlowState {
12
+ /**
13
+ * A state signifying that a logical validation has not been performed.
14
+ * DEPRECATED: Use `PreValidationState()`
15
+ */
16
+ deprecated class PreValidation extends DataFlow:: FlowState {
14
17
PreValidation ( ) { this = "PreValidation" }
15
18
}
16
19
17
- /** A state signifying that a logical validation has been performed. */
18
- class PostValidation extends DataFlow:: FlowState {
20
+ /**
21
+ * A state signifying that a logical validation has been performed.
22
+ * DEPRECATED: Use `PostValidationState()`
23
+ */
24
+ deprecated class PostValidation extends DataFlow:: FlowState {
19
25
PostValidation ( ) { this = "PostValidation" }
20
26
}
21
27
You can’t perform that action at this time.
0 commit comments