Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/CompositeSerializers/Storable/StorableHookAttribute.cs

    r3742 r4068  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    26 using System.Reflection;
    2723
    2824namespace HeuristicLab.Persistence.Default.CompositeSerializers.Storable {
     
    3935    /// </summary>
    4036    BeforeSerialization,
    41    
     37
    4238    /// <summary>
    4339    /// States that this hook should be called after the storable
    4440    /// serializer hast complete re-assembled the object.
    4541    /// </summary>
    46     AfterDeserialization };
     42    AfterDeserialization
     43  };
    4744
    4845
     
    5249  /// </summary>
    5350  [AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = true)]
    54   public sealed class StorableHookAttribute : Attribute {   
     51  public sealed class StorableHookAttribute : Attribute {
    5552
    5653    private readonly HookType hookType;
     
    7067    public StorableHookAttribute(HookType hookType) {
    7168      this.hookType = hookType;
    72     }   
     69    }
    7370  }
    7471}
Note: See TracChangeset for help on using the changeset viewer.