- Timestamp:
- 02/18/13 10:34:23 (12 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/UnloadJobs (added) merged: 9168-9170,9173-9174,9183-9184,9187-9188,9193,9201-9202
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients/HiveItemCollection.cs
r7259 r9219 52 52 } 53 53 54 public void ClearWithoutHiveDeletion() { 55 if (list.Count > 0) { 56 T[] items = list.ToArray(); 57 list.Clear(); 58 OnPropertyChanged("Count"); 59 //don't call OnCollectionReset directly as it would delete the job 60 base.OnCollectionReset(list, items); 61 } 62 } 63 54 64 private void RemoveItems(IEnumerable<T> items, out IEnumerable<T> successful, out IEnumerable<T> unsuccessful, out Exception exception) { 55 65 List<T> removed = new List<T>();
Note: See TracChangeset
for help on using the changeset viewer.