Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/02/11 16:03:25 (13 years ago)
Author:
epitzer
Message:

#1530 flatten serialization token hierarchy and seal frequently used classes

File:
1 edited

Legend:

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

    r5445 r6702  
    2121
    2222
     23using HeuristicLab.Persistence.Interfaces;
    2324namespace HeuristicLab.Persistence.Core.Tokens {
    2425
     
    2627  /// Marks the end of a composite element.
    2728  /// </summary>
    28   public class EndToken : CompositeTokenBase {
    29 
    30     /// <summary>
    31     /// Initializes a new instance of the <see cref="EndToken"/> class.
    32     /// </summary>
    33     /// <param name="name">The name.</param>
    34     /// <param name="typeId">The type id.</param>
    35     /// <param name="id">The object id.</param>
    36     public EndToken(string name, int typeId, int? id) : base(name, typeId, id) { }
    37   }
     29  public sealed class EndToken : ISerializationToken { }
    3830
    3931}
Note: See TracChangeset for help on using the changeset viewer.