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.Persistence.GUI/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence.GUI/3.3/PersistenceAnalysis.cs

    r3742 r4068  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
     25using System.Windows.Forms;
    2626using HeuristicLab.Persistence.Core;
    27 using System.Windows.Forms;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    29 using System.Reflection;
    3027
    3128namespace HeuristicLab.Persistence.GUI {
     
    6360          assembly.FullName.StartsWith("Netron"))
    6461          continue;
    65         foreach (var type in assembly.GetTypes()) {         
     62        foreach (var type in assembly.GetTypes()) {
    6663          if (type.IsInterface || type.IsAbstract ||
    6764              type.FullName.StartsWith("System.") ||
    68               type.FullName.StartsWith("Microsoft.") ||             
     65              type.FullName.StartsWith("Microsoft.") ||
    6966              type.FullName.Contains("<") ||
    7067              type.FullName.Contains(">") ||
     
    7471              DerivesFrom(typeof(System.Attribute), type) ||
    7572              type.GetInterface("HeuristicLab.MainForm.IUserInterfaceItem") != null
    76             )           
     73            )
    7774            continue;
    7875          try {
     
    8178            /* if (!IsCorrectlyStorable(type))
    8279              storableInconsistentcy.Add(type); */
    83           } catch {
     80          }
     81          catch {
    8482            types.Add(type);
    8583          }
     
    9896      }
    9997      return true;
    100     }  */ 
     98    }  */
    10199  }
    102100}
  • trunk/sources/HeuristicLab.Persistence.GUI/3.3/PersistenceConfigurationForm.cs

    r3742 r4068  
    2727using HeuristicLab.Persistence.Auxiliary;
    2828using HeuristicLab.Persistence.Core;
    29 using HeuristicLab.Persistence.Default.Xml;
    3029using HeuristicLab.Persistence.Interfaces;
    31 using System.Text;
    32 using HeuristicLab.Persistence.Default.CompositeSerializers;
    33 using HeuristicLab.PluginInfrastructure;
    34 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3530
    3631namespace HeuristicLab.Persistence.GUI {
     
    5954        ConfigurationService.Instance.LoadSettings(true);
    6055        UpdateFromConfigurationService();
    61       } catch (PersistenceException) {
     56      }
     57      catch (PersistenceException) {
    6258        MessageBox.Show(
    6359          "Persistence settings could not be loaded.\r\n" +
     
    455451  }
    456452
    457  
     453
    458454
    459455}
  • trunk/sources/HeuristicLab.Persistence.GUI/3.3/TypeExtensions.cs

    r3742 r4068  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    2523using System.Text;
    2624
     
    5149
    5250  }
    53  
     51
    5452}
Note: See TracChangeset for help on using the changeset viewer.