This project has retired. For details please refer to its Attic page.
Archiva Database - CPD Results

CPD Results

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

Duplications

FileLine
org/apache/maven/archiva/database/jdo/JdoAccess.java342
org/apache/maven/archiva/database/jdo/JdoAccess.java660
                query.declareVariables( StringUtils.join( constraint.getVariables(), ";  " ) );
            }

            if ( constraint.getFetchLimits() != null )
            {
                pm.getFetchPlan().addGroup( constraint.getFetchLimits() );
            }

            if ( constraint.getWhereCondition() != null )
            {
                query.setFilter( constraint.getWhereCondition() );
            }

            if ( constraint.getDeclaredImports() != null )
            {
                query.declareImports( StringUtils.join( constraint.getDeclaredImports(), ", " ) );
            }

            if ( constraint.getRange() != null )
            {
                query.setRange( constraint.getRange()[0], constraint.getRange()[1] );
            }