Skip to content

Commit 91773bb

Browse files
authored
Allow calling public methods on SQLParameterizer from outsiders (#360)
1 parent 7693903 commit 91773bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-codemods/src/main/java/io/codemodder/codemods/SQLParameterizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Contains most of the logic for detecting and fixing parameterizable SQL statements for a given
2222
* {@link MethodCallExpr}.
2323
*/
24-
final class SQLParameterizer {
24+
public final class SQLParameterizer {
2525

2626
private static final String preparedStatementNamePrefix = "stmt";
2727
private static final String preparedStatementNamePrefixAlternative = "statement";

0 commit comments

Comments
 (0)