Skip to content
Snippets Groups Projects
Commit 4f9b3fca authored by brinn's avatar brinn
Browse files

[BIS-260] Fix SQL injections for custom queries

Minor: fix typo.

SVN: 27626
parent 7192b12b
No related branches found
No related tags found
No related merge requests found
......@@ -237,7 +237,7 @@ class DAO extends SimpleJdbcDaoSupport implements IDAO
final Entry<String, String> entry = indexMap.get(i - 1);
if (entry == null)
{
throw new SQLDataException("No variable found for for parameter " + i);
throw new SQLDataException("No variable found for parameter " + i);
}
final String strValue = entry.getValue();
try
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment