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.Operators.Views.GraphVisualization/3.3/General/GraphVisualizationInfo.cs

    r3742 r4068  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using HeuristicLab.Core;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2825using HeuristicLab.Collections;
    2926using HeuristicLab.Common;
     27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3028
    3129namespace HeuristicLab.Operators.Views.GraphVisualization {
     
    7270    public virtual void RemoveShapeInfo(IShapeInfo shapeInfo) {
    7371      this.shapeInfos.Remove(shapeInfo);
    74       this.connectionInfos.RemoveWhere(c => c.From == shapeInfo); 
     72      this.connectionInfos.RemoveWhere(c => c.From == shapeInfo);
    7573      this.connectionInfos.RemoveWhere(c => c.To == shapeInfo);
    7674    }
Note: See TracChangeset for help on using the changeset viewer.