Changeset 1759 for trunk/sources/HeuristicLab.Hive.Server.ADODataAccess
- Timestamp:
- 05/08/09 12:45:58 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/ClientGroupAdapter.cs
r1758 r1759 127 127 128 128 ManyToManyRelationHelper.UpdateRelationships(group.Id, 129 relationships , 1);129 relationships); 130 130 } 131 131 } … … 159 159 //delete all relationships 160 160 ManyToManyRelationHelper.UpdateRelationships(group.Id, 161 new List<Guid>() , 1);161 new List<Guid>()); 162 162 163 163 return base.doDelete(group) && -
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/JobAdapter.cs
r1758 r1759 321 321 322 322 ManyToManyRelationHelper.UpdateRelationships( 323 obj.Id, relationships , 1);323 obj.Id, relationships); 324 324 } 325 325 … … 340 340 //delete all relationships 341 341 ManyToManyRelationHelper.UpdateRelationships(job.Id, 342 new List<Guid>() , 1);342 new List<Guid>()); 343 343 344 344 //delete orphaned pluginInfos
Note: See TracChangeset
for help on using the changeset viewer.