Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/27/09 13:45:33 (15 years ago)
Author:
epitzer
Message:

refactoring and code clean up. (#9999)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/New Persistence Exploration/Persistence/Persistence/Default/Decomposers/StorableDecomposer.cs

    r1434 r1447  
    22using System.Collections.Generic;
    33using System.Linq;
    4 using System.Text;
    54using HeuristicLab.Persistence.Interfaces;
    65using HeuristicLab.Persistence.Core;
    7 using System.Collections;
    86
    97namespace HeuristicLab.Persistence.Default.Decomposers {
     
    3129      IEnumerator<Tag> iter = objects.GetEnumerator();     
    3230      while (iter.MoveNext()) {
    33         memberDict.Add((string)iter.Current.Name, iter.Current);
     31        memberDict.Add(iter.Current.Name, iter.Current);
    3432      }     
    3533      foreach (var mapping in StorableAttribute.GetAutostorableAccessors(instance)) {
Note: See TracChangeset for help on using the changeset viewer.