Skip to content

Commit 8fbaed8

Browse files
committed
Fixed cleanup step being disabled
1 parent 8030f00 commit 8fbaed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/codemodder-base/src/main/java/io/codemodder/remediation/sqlinjection/SQLParameterizerWithCleanup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ private SQLParameterizerWithCleanup() {}
1010

1111
public static boolean checkAndFix(final MethodCallExpr methodCallExpr) {
1212
var maybeFixed = new SQLParameterizer(methodCallExpr).checkAndFix();
13-
// maybeFixed.ifPresent(call -> cleanup(call));
13+
maybeFixed.ifPresent(call -> cleanup(call));
1414
return maybeFixed.isPresent();
1515
}
1616

0 commit comments

Comments
 (0)