@@ -223,15 +223,15 @@ deprecated class LeapYearCheckConfiguration extends DataFlow::Configuration {
223223 * Data flow configuration for finding a variable access that would flow into
224224 * a function call that includes an operation to check for leap year.
225225 */
226- private module LeapYearCheckConfiguration implements DataFlow:: ConfigSig {
226+ private module LeapYearCheckConfig implements DataFlow:: ConfigSig {
227227 predicate isSource ( DataFlow:: Node source ) { source .asExpr ( ) instanceof VariableAccess }
228228
229229 predicate isSink ( DataFlow:: Node sink ) {
230230 exists ( ChecksForLeapYearFunctionCall fc | sink .asExpr ( ) = fc .getAnArgument ( ) )
231231 }
232232}
233233
234- module LeapYearCheckFlow = DataFlow:: Make< LeapYearCheckConfiguration > ;
234+ module LeapYearCheckFlow = DataFlow:: Make< LeapYearCheckConfig > ;
235235
236236/**
237237 * Data flow configuration for finding an operation with hardcoded 365 that will flow into
@@ -264,7 +264,7 @@ deprecated class FiletimeYearArithmeticOperationCheckConfiguration extends DataF
264264 * Data flow configuration for finding an operation with hardcoded 365 that will flow into
265265 * a `FILEINFO` field.
266266 */
267- private module FiletimeYearArithmeticOperationCheckConfiguration implements DataFlow:: ConfigSig {
267+ private module FiletimeYearArithmeticOperationCheckConfig implements DataFlow:: ConfigSig {
268268 predicate isSource ( DataFlow:: Node source ) {
269269 exists ( Expr e , Operation op | e = source .asExpr ( ) |
270270 op .getAChild * ( ) .getValue ( ) .toInt ( ) = 365 and
@@ -284,7 +284,7 @@ private module FiletimeYearArithmeticOperationCheckConfiguration implements Data
284284}
285285
286286module FiletimeYearArithmeticOperationCheckFlow =
287- DataFlow:: Make< FiletimeYearArithmeticOperationCheckConfiguration > ;
287+ DataFlow:: Make< FiletimeYearArithmeticOperationCheckConfig > ;
288288
289289/**
290290 * Taint configuration for finding an operation with hardcoded 365 that will flow into any known date/time field.
@@ -334,7 +334,7 @@ deprecated class PossibleYearArithmeticOperationCheckConfiguration extends Taint
334334/**
335335 * Taint configuration for finding an operation with hardcoded 365 that will flow into any known date/time field.
336336 */
337- private module PossibleYearArithmeticOperationCheckConfiguration implements DataFlow:: ConfigSig {
337+ private module PossibleYearArithmeticOperationCheckConfig implements DataFlow:: ConfigSig {
338338 predicate isSource ( DataFlow:: Node source ) {
339339 exists ( Operation op | op = source .asConvertedExpr ( ) |
340340 op .getAChild * ( ) .getValue ( ) .toInt ( ) = 365 and
@@ -372,4 +372,4 @@ private module PossibleYearArithmeticOperationCheckConfiguration implements Data
372372}
373373
374374module PossibleYearArithmeticOperationCheckFlow =
375- TaintTracking:: Make< PossibleYearArithmeticOperationCheckConfiguration > ;
375+ TaintTracking:: Make< PossibleYearArithmeticOperationCheckConfig > ;
0 commit comments