remove temporary typo warning

This commit is contained in:
Jonathan Shook 2021-02-26 14:40:41 -06:00
parent c3f01b12f3
commit d59f3f0d37

View File

@ -193,10 +193,6 @@ public class CqlActivity extends SimpleActivity implements Activity, ActivityDef
ParsedStmt parsed = stmtDef.getParsed(this::canonicalizeBindings).orError();
boolean prepared = stmtDef.getParamOrDefault("prepared", true);
if (stmtDef.getOptionalStringParam("parametrized").isPresent()) {
throw new RuntimeException("Please use 'parameterized' instead of 'parametrized'. This was recently " +
"corrected. This warning will be removed in the future.");
}
boolean parameterized = stmtDef.getParamOrDefault("parameterized", false);
long ratio = stmtDef.getParamOrDefault("ratio", 1);