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

    r3831 r4068  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Security.Policy;
     24using System.IO;
     25using System.Linq;
    2526using System.Reflection;
    26 using System.Diagnostics;
    27 using System.Security.Permissions;
    28 using System.Security;
    29 using System.Linq;
    3027using HeuristicLab.PluginInfrastructure.Manager;
    31 using System.IO;
    3228
    3329namespace HeuristicLab.PluginInfrastructure {
     
    252248          if (type.IsAssignableFrom(other.GetGenericTypeDefinition().MakeGenericType(type.GetGenericArguments())))
    253249            return true;
    254         } catch (Exception) { }
     250        }
     251        catch (Exception) { }
    255252      }
    256253      return false;
Note: See TracChangeset for help on using the changeset viewer.