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.Core/3.3/OperatorGraph.cs

    r3729 r4068  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Text;
    25 using System.Xml;
    2623using System.Linq;
     24using HeuristicLab.Collections;
     25using HeuristicLab.Common;
    2726using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 using HeuristicLab.Common;
    29 using HeuristicLab.Collections;
    3027
    3128namespace HeuristicLab.Core {
     
    9592    private void OnOperatorGraphDeserializationFinished() {
    9693      EventHandler handler = DeserializationFinished;
    97       if(handler != null)
    98         handler(this,EventArgs.Empty);
     94      if (handler != null)
     95        handler(this, EventArgs.Empty);
    9996    }
    10097    [StorableHook(HookType.AfterDeserialization)]
Note: See TracChangeset for help on using the changeset viewer.