Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/12/11 10:12:50 (13 years ago)
Author:
epitzer
Message:

#1530 Split type and serializer tokens and include special handling for CachedTypeSerializer (this should also fix #1527)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceSpeedUp/HeuristicLab.Persistence/3.3/Core/GeneratorBase.cs

    r5445 r6737  
    5757      if (type == typeof(TypeToken))
    5858        return Format((TypeToken)token);
     59      if (type == typeof(SerializerToken))
     60        return Format((SerializerToken)token);
    5961      throw new ApplicationException("Invalid token of type " + type.FullName);
    6062    }
     
    116118    protected abstract T Format(TypeToken typeToken);
    117119
     120    protected abstract T Format(SerializerToken serializerToken);
    118121  }
    119122}
Note: See TracChangeset for help on using the changeset viewer.