Skip to content
Snippets Groups Projects
Commit 3e8a60da authored by jakubs's avatar jakubs
Browse files

remove unnecessary printout

SVN: 27217
parent 3b1a3a5b
No related branches found
No related tags found
No related merge requests found
...@@ -82,7 +82,6 @@ public class MigrationStepFrom120To121 extends MigrationStepAdapter ...@@ -82,7 +82,6 @@ public class MigrationStepFrom120To121 extends MigrationStepAdapter
List<Long> list = List<Long> list =
simpleJdbcTemplate.query("SELECT id from data_set_types where code = ?", simpleJdbcTemplate.query("SELECT id from data_set_types where code = ?",
ID_ROW_MAPPER, code); ID_ROW_MAPPER, code);
System.out.println(list.size());
return list.size() > 0 ? list.get(0) : null; return list.size() > 0 ? list.get(0) : null;
} }
......
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