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/ReadOnlyCheckedItemCollection.cs

    r3822 r4068  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Drawing;
    25 using System.Linq;
    2624using HeuristicLab.Collections;
    27 using HeuristicLab.Common;
    28 using HeuristicLab.Common.Resources;
    2925using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3026
     
    3632      get { return (CheckedItemCollection<T>)base.collection; }
    3733    }
    38    
     34
    3935    public ReadOnlyCheckedItemCollection() : base(new CheckedItemCollection<T>()) { }
    4036    public ReadOnlyCheckedItemCollection(ICheckedItemCollection<T> collection)
     
    5349        handler(this, e);
    5450    }
    55    
     51
    5652    public IEnumerable<T> CheckedItems {
    5753      get { return CheckedItemCollection.CheckedItems; }
Note: See TracChangeset for help on using the changeset viewer.