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/Collections/NamedItemCollection.cs

    r3822 r4068  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Drawing;
    25 using System.Linq;
    26 using HeuristicLab.Collections;
    2724using HeuristicLab.Common;
    2825using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    3431    public NamedItemCollection() : base() { }
    3532    public NamedItemCollection(int capacity) : base(capacity) { }
    36     public NamedItemCollection(IEnumerable<T> collection) : base(collection) {
     33    public NamedItemCollection(IEnumerable<T> collection)
     34      : base(collection) {
    3735      Initialize();
    3836    }
Note: See TracChangeset for help on using the changeset viewer.