Remove duplicate setter.

This commit is contained in:
dsyer
2008-02-04 14:47:39 +00:00
parent cade1e8f19
commit c96c619d26
3 changed files with 36 additions and 45 deletions

View File

@@ -29,7 +29,7 @@ public class MultipleColumnJdbcKeyGeneratorIntegrationTests extends AbstractTran
keyStrategy = new MultipleColumnJdbcKeyGenerator(getJdbcTemplate(),
"SELECT ID, VALUE from T_FOOS order by ID");
keyStrategy.setRestartSql("SELECT ID, VALUE from T_FOOS where ID > ? and VALUE > ? order by ID");
keyStrategy.setRestartQuery("SELECT ID, VALUE from T_FOOS where ID > ? and VALUE > ? order by ID");
}
public void testRetrieveKeys(){