File tree Expand file tree Collapse file tree
java/ql/src/semmle/code/java Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -202,11 +202,9 @@ private class BeanValidationSource extends RemoteFlowSource {
202202abstract class UserInput extends DataFlow:: Node { }
203203
204204/**
205- * DEPRECATED: Use `RemoteFlowSource` instead.
206- *
207205 * Input that may be controlled by a remote user.
208206 */
209- deprecated class RemoteUserInput extends UserInput {
207+ private class RemoteUserInput extends UserInput {
210208 RemoteUserInput ( ) { this instanceof RemoteFlowSource }
211209}
212210
Original file line number Diff line number Diff line change @@ -9,10 +9,4 @@ import semmle.code.java.dataflow.internal.TaintTrackingUtil::StringBuilderVarMod
99
1010module TaintTracking {
1111 import semmle.code.java.dataflow.internal.tainttracking1.TaintTrackingImpl
12- private import semmle.code.java.dataflow.TaintTracking2
13-
14- /**
15- * DEPRECATED: Use TaintTracking2::Configuration instead.
16- */
17- deprecated class Configuration2 = TaintTracking2:: Configuration ;
1812}
Original file line number Diff line number Diff line change @@ -63,18 +63,3 @@ private predicate validatedAccess(VarAccess va) {
6363class ValidatedVariableAccess extends VarAccess {
6464 ValidatedVariableAccess ( ) { validatedAccess ( this ) }
6565}
66-
67- /**
68- * DEPRECATED: Use ValidatedVariableAccess instead.
69- *
70- * A variable that is ever passed to a string verification method.
71- */
72- deprecated class ValidatedVariable extends Variable {
73- ValidatedVariable ( ) {
74- exists ( MethodAccess call , int arg , VarAccess access |
75- validationMethod ( call .getMethod ( ) , arg ) and
76- call .getArgument ( arg ) = access and
77- access .getVariable ( ) = this
78- )
79- }
80- }
You can’t perform that action at this time.
0 commit comments