File tree Expand file tree Collapse file tree 3 files changed +2
-23
lines changed Expand file tree Collapse file tree 3 files changed +2
-23
lines changed Original file line number Diff line number Diff line change @@ -1096,10 +1096,7 @@ module Cryptography {
1096
1096
* extend `CryptographicOperation::Range` instead.
1097
1097
*/
1098
1098
class CryptographicOperation extends SC:: CryptographicOperation instanceof CryptographicOperation:: Range
1099
- {
1100
- /** DEPRECATED: Use `getAlgorithm().isWeak() or getBlockMode().isWeak()` instead */
1101
- deprecated predicate isWeak ( ) { super .isWeak ( ) }
1102
- }
1099
+ { }
1103
1100
1104
1101
/** Provides classes for modeling new applications of a cryptographic algorithms. */
1105
1102
module CryptographicOperation {
@@ -1110,10 +1107,7 @@ module Cryptography {
1110
1107
* Extend this class to model new APIs. If you want to refine existing API models,
1111
1108
* extend `CryptographicOperation` instead.
1112
1109
*/
1113
- abstract class Range extends SC:: CryptographicOperation:: Range {
1114
- /** DEPRECATED: Use `getAlgorithm().isWeak() or getBlockMode().isWeak()` instead */
1115
- deprecated predicate isWeak ( ) { this .getAlgorithm ( ) .isWeak ( ) or this .getBlockMode ( ) .isWeak ( ) }
1116
- }
1110
+ abstract class Range extends SC:: CryptographicOperation:: Range { }
1117
1111
}
1118
1112
1119
1113
class BlockMode = SC:: BlockMode ;
Original file line number Diff line number Diff line change @@ -80,12 +80,6 @@ class ConstantValue extends TConstantValue {
80
80
/** Holds if this is the regexp value `/s/flags` . */
81
81
predicate isRegExpWithFlags ( string s , string flags ) { this = TRegExp ( s , flags ) }
82
82
83
- /** DEPRECATED: Use `getStringlikeValue` instead. */
84
- deprecated string getStringOrSymbol ( ) { result = this .getStringlikeValue ( ) }
85
-
86
- /** DEPRECATED: Use `isStringlikeValue` instead. */
87
- deprecated predicate isStringOrSymbol ( string s ) { s = this .getStringlikeValue ( ) }
88
-
89
83
/** Gets the string/symbol/regexp value, if any. */
90
84
string getStringlikeValue ( ) { result = [ this .getString ( ) , this .getSymbol ( ) , this .getRegExp ( ) ] }
91
85
Original file line number Diff line number Diff line change @@ -63,9 +63,6 @@ abstract class IOOrFileMethodCall extends DataFlow::CallNode {
63
63
/** Gets the API used to perform this call, either "IO" or "File" */
64
64
abstract string getApi ( ) ;
65
65
66
- /** DEPRECATED: Alias for getApi */
67
- deprecated string getAPI ( ) { result = this .getApi ( ) }
68
-
69
66
/** Gets a node representing the data read or written by this call */
70
67
abstract DataFlow:: Node getADataNodeImpl ( ) ;
71
68
@@ -115,9 +112,6 @@ class IOOrFileReadMethodCall extends IOOrFileMethodCall {
115
112
116
113
override string getApi ( ) { result = api }
117
114
118
- /** DEPRECATED: Alias for getApi */
119
- deprecated override string getAPI ( ) { result = this .getApi ( ) }
120
-
121
115
override DataFlow:: Node getADataNodeImpl ( ) { result = this }
122
116
123
117
override string getReceiverKind ( ) { result = receiverKind }
@@ -159,9 +153,6 @@ class IOOrFileWriteMethodCall extends IOOrFileMethodCall {
159
153
160
154
override string getApi ( ) { result = api }
161
155
162
- /** DEPRECATED: Alias for getApi */
163
- deprecated override string getAPI ( ) { result = this .getApi ( ) }
164
-
165
156
override DataFlow:: Node getADataNodeImpl ( ) { result = dataNode }
166
157
167
158
override string getReceiverKind ( ) { result = receiverKind }
You can’t perform that action at this time.
0 commit comments