The following document contains the results of PMD's CPD 4.2.5.
| File | Line |
|---|---|
| org/apache/maven/archiva/database/jdo/JdoAccess.java | 342 |
| org/apache/maven/archiva/database/jdo/JdoAccess.java | 660 |
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] );
} | |