Fix @Override (Java 6)

This commit is contained in:
dsyer
2008-08-21 16:18:55 +00:00
parent b190b09e98
commit 6040e8aa69

View File

@@ -153,7 +153,10 @@ public class JdbcPagingItemReader<T> extends AbstractItemReaderItemStream<T> imp
this.parameterizedRowMapper = parameterizedRowMapper;
}
@Override
/**
* Check mandatory properties.
* @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
*/
public void afterPropertiesSet() throws Exception {
Assert.notNull(dataSource);
Assert.hasLength(selectClause, "selectClause must be specified");