Fork me on GitHub

CPD Results

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

Duplications

File Line
fr/paris/lutece/plugins/mylutece/modules/users/business/LocalUserDAO.java 88
fr/paris/lutece/plugins/mylutece/modules/users/business/LocalUserDAO.java 210
            daoUtil.setInt( 1, nKey );
            daoUtil.executeQuery( );
            if ( daoUtil.next( ) )
            {
                localUser = new LocalUser( );
                int nIndex = 1;
                localUser.setId( daoUtil.getInt( nIndex++ ) );
                localUser.setLogin( daoUtil.getString( nIndex++ ) );
                localUser.setGivenName( daoUtil.getString( nIndex++ ) );
                localUser.setLastName( daoUtil.getString( nIndex++ ) );
                localUser.setEmail( daoUtil.getString( nIndex++ ) );
                localUser.setProviderUserId( daoUtil.getString( nIndex++ ) );
            }
        }
        return localUser;
    }