- Timestamp:
- Jan 12, 2011, 4:50:46 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/importer/ImporterController.groovy
r1376 r1377 505 505 */ 506 506 def removeFailedCell(failedcells, entity) { 507 def tempfailedcells = [] 508 def tempfailedrecord = new ImportRecord() 509 507 510 // Valid entity, remove it from failedcells 511 508 512 failedcells.each { record -> 509 513 record.importcells.each { cell -> 510 514 // remove the cell from the failed cells session 511 515 if (cell.entityidentifier == entity.getIdentifier()) { 512 record.removeFromImportcells(cell) 516 tempfailedrecord = record 517 tempfailedrecord.removeFromImportcells(cell) 518 record = tempfailedrecord 513 519 } 514 520 } // end of importcells
Note: See TracChangeset
for help on using the changeset viewer.