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
99private import codeql.ruby.ApiGraphs
1010import UnicodeBypassValidationCustomizations:: UnicodeBypassValidation
1111
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 {
1417 PreValidation ( ) { this = "PreValidation" }
1518}
1619
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 {
1925 PostValidation ( ) { this = "PostValidation" }
2026}
2127
You can’t perform that action at this time.
0 commit comments