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)

Location:
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter
Files:
4 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);
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/SplashScreen.Designer.cs

    r3813 r4068  
    2020#endregion
    2121
    22 using HeuristicLab.PluginInfrastructure;
    2322namespace HeuristicLab.PluginInfrastructure.Starter {
    2423  partial class SplashScreen {
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/SplashScreen.cs

    r3777 r4068  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Data;
    25 using System.Drawing;
     23using System.Diagnostics;
     24using System.Linq;
     25using System.Reflection;
    2626using System.Windows.Forms;
    27 using System.Reflection;
    28 using System.Linq;
    29 using HeuristicLab.PluginInfrastructure;
    3027using HeuristicLab.PluginInfrastructure.Manager;
    31 using System.Diagnostics;
    3228
    3329namespace HeuristicLab.PluginInfrastructure.Starter {
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/StarterForm.cs

    r3758 r4068  
    2121
    2222using System;
     23using System.Collections.Generic;
     24using System.Diagnostics;
     25using System.IO;
    2326using System.Linq;
    24 using System.Collections.Generic;
    25 using System.ComponentModel;
    26 using System.Data;
    27 using System.Drawing;
    28 using System.Text;
     27using System.Threading;
    2928using System.Windows.Forms;
    30 using System.Diagnostics;
    31 using HeuristicLab.PluginInfrastructure;
    32 using System.Threading;
     29using HeuristicLab.PluginInfrastructure.Advanced;
    3330using HeuristicLab.PluginInfrastructure.Manager;
    34 using System.IO;
    35 using HeuristicLab.PluginInfrastructure.Advanced;
    3631
    3732namespace HeuristicLab.PluginInfrastructure.Starter {
Note: See TracChangeset for help on using the changeset viewer.