Fork me on GitHub

CPD Results

The following document contains the results of PMD's CPD 5.3.5.

Duplications

File Line
fr/paris/lutece/plugins/myportal/modules/rss/business/RssConfDAO.java 170
fr/paris/lutece/plugins/myportal/modules/rss/business/RssConfDAO.java 241
        DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECTALL, plugin );
        daoUtil.executeQuery(  );

        while ( daoUtil.next(  ) )
        {
            RssConf rssConf = new RssConf(  );
            int nIndex = 1;
            
            rssConf.setId( daoUtil.getInt( nIndex++ ) );
            rssConf.setAttributeUser( daoUtil.getString( nIndex++ ) );
            rssConf.setAttributeValue( daoUtil.getString( nIndex++ ) );
            rssConf.setUrl( daoUtil.getString( nIndex++ ) );
            rssConf.setIdCategory( daoUtil.getInt( nIndex++ ) );
            rssConf.setIdStyleSheet( daoUtil.getInt( nIndex++ ) );


            rssConfList.add( rssConf );
        }

        daoUtil.free( );
        return rssConfList;
    }