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.PluginInfrastructure/3.3/Starter/AboutDialog.cs

    r3761 r4068  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.ComponentModel;
    25 using System.Data;
    26 using System.Drawing;
     24using System.Diagnostics;
    2725using System.Linq;
    28 using System.Text;
     26using System.Reflection;
    2927using System.Windows.Forms;
    30 using System.Reflection;
    31 using System.Diagnostics;
    3228using HeuristicLab.PluginInfrastructure.Advanced;
    3329
     
    5753    /// </summary>
    5854    /// <param name="plugins">Enumerable of plugins that should be listed.</param>
    59     public AboutDialog(IEnumerable<IPluginDescription> plugins) : this() {
     55    public AboutDialog(IEnumerable<IPluginDescription> plugins)
     56      : this() {
    6057      UpdatePluginList(plugins);
    6158    }
     
    10198
    10299    private void pluginListView_ItemActivate(object sender, EventArgs e) {
    103       if(pluginListView.SelectedItems.Count > 0) {
     100      if (pluginListView.SelectedItems.Count > 0) {
    104101        PluginView view = new PluginView((IPluginDescription)pluginListView.SelectedItems[0].Tag);
    105102        view.Show(this);
Note: See TracChangeset for help on using the changeset viewer.