Skip to content
Snippets Groups Projects
Commit 690cf7fa authored by brinn's avatar brinn
Browse files

Remove unused method.

SVN: 24714
parent 45edb8c9
No related branches found
No related tags found
No related merge requests found
......@@ -181,24 +181,6 @@ public class TrashBO extends AbstractBusinessObject implements ITrashBO
+ builder);
}
private void trashSampleDependentChildren(List<TechId> sampleIds)
{
final ISampleDAO sampleDAO = getSampleDAO();
AbstractQueryBatchOperation batchOperation =
new AbstractQueryBatchOperation(EntityKind.SAMPLE, sampleIds,
"listSampleIdsByParentIds")
{
@Override
public Collection<TechId> listAction(List<TechId> entities)
{
return sampleDAO.listChildrenForTrashedSamples(entities);
}
};
BatchOperationExecutor.executeInBatches(batchOperation);
trashSamples(batchOperation.getResults());
}
private void trashSampleDependentComponents(List<TechId> sampleIds)
{
final ISampleDAO sampleDAO = getSampleDAO();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment