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.Operators.Programmable/3.3/ProgrammableOperator.cs

    r3903 r4068  
    2121
    2222using System;
     23using System.CodeDom;
     24using System.CodeDom.Compiler;
    2325using System.Collections.Generic;
    24 using System.Text;
    25 using System.Xml;
    2626using System.IO;
    2727using System.Linq;
    2828using System.Reflection;
    29 using System.CodeDom;
    30 using System.CodeDom.Compiler;
    31 using Microsoft.CSharp;
     29using System.Text;
    3230using System.Text.RegularExpressions;
     31using HeuristicLab.Collections;
    3332using HeuristicLab.Common;
    3433using HeuristicLab.Core;
    35 using HeuristicLab.Data;
    36 using System.Data.Linq;
    37 using System.Xml.XPath;
     34using HeuristicLab.Persistence.Auxiliary;
     35using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3836using HeuristicLab.PluginInfrastructure;
    39 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    40 using HeuristicLab.Persistence.Auxiliary;
    41 using HeuristicLab.Collections;
     37using Microsoft.CSharp;
    4238
    4339namespace HeuristicLab.Operators.Programmable {
     
    8076    protected Dictionary<Assembly, bool> Assemblies;
    8177
    82     [Storable(Name="SelectedAssemblies")]
     78    [Storable(Name = "SelectedAssemblies")]
    8379    private List<string> _selectedAssemblyNames_persistence {
    8480      get {
    85         return Assemblies.Where(a => a.Value).Select(a => a.Key.FullName).ToList();       
     81        return Assemblies.Where(a => a.Value).Select(a => a.Key.FullName).ToList();
    8682      }
    8783      set {
     
    244240            assemblies.Add(a, false);
    245241          }
    246         } catch (NotSupportedException) {
     242        }
     243        catch (NotSupportedException) {
    247244          // NotSupportedException is thrown while accessing
    248245          // the Location property of the anonymously hosted
Note: See TracChangeset for help on using the changeset viewer.