Improved some traces

This commit is contained in:
Ziver Koc 2016-01-06 23:20:45 +01:00
parent af3f02eb4b
commit 58051dc0f2
3 changed files with 11 additions and 10 deletions

View file

@ -182,7 +182,6 @@ public class DBBeanSQLResultHandler<T> implements SQLResultHandler<T>{
public T handleQueryResult(Statement stmt, ResultSet result) throws SQLException{
if( list ){
LinkedList<DBBean> bean_list = new LinkedList<DBBean>();
logger.fine("Loading new DBBean List");
while( result.next() ){
DBBean obj = createBean(result);
bean_list.add( obj );