Skip to content

Commit

Permalink
Doesn't need to be a compile time constant here...
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Jan 31, 2025
1 parent 2a99d75 commit a46d2f9
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
import org.apache.commons.io.IOUtils;
import org.springframework.core.io.Resource;

import com.google.errorprone.annotations.CompileTimeConstant;

/**
* Some sort of SQL that can be executed as part of a query or an update.
*/
Expand All @@ -37,7 +35,7 @@ public class SQL {
*
* @param sql The String containing SQL
*/
public SQL(@CompileTimeConstant String sql) {
public SQL(String sql) {
this.sql = sql;
}

Expand Down

0 comments on commit a46d2f9

Please sign in to comment.