Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/20/09 17:36:22 (15 years ago)
Author:
epitzer
Message:

namespace refactoring (#548)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Core/DeSerializer.cs

    r1574 r1612  
    6969        Type type = Type.GetType(typeMapping.TypeName, true);
    7070        typeIds.Add(typeMapping.Id, type);
    71         if (typeMapping.Serializer != null) {
    72           Type serializerType = Type.GetType(typeMapping.Serializer);
    73           map.Add(type, Activator.CreateInstance(serializerType, true));
    74         }
     71        Type serializerType = Type.GetType(typeMapping.Serializer);
     72        map.Add(type, Activator.CreateInstance(serializerType, true));
    7573      }
    7674      return map;
Note: See TracChangeset for help on using the changeset viewer.