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.Persistence/3.3/Auxiliary/TypeName.cs

    r3935 r4068  
    2121
    2222using System;
     23using System.Collections.Generic;
    2324using System.Linq;
    2425using System.Text;
    25 using System.Text.RegularExpressions;
    26 using System.Reflection.Emit;
    27 using System.Collections.Generic;
    2826using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2927
     
    135133    /// A <see cref="System.String"/> that represents this instance.
    136134    /// </returns>
    137     public string ToString(bool full, bool includeAssembly) {     
     135    public string ToString(bool full, bool includeAssembly) {
    138136      StringBuilder sb = new StringBuilder();
    139137      if (!string.IsNullOrEmpty(Namespace))
     
    236234        }
    237235        return false;
    238       } catch (KeyNotFoundException) {
     236      }
     237      catch (KeyNotFoundException) {
    239238        throw new Exception("Could not extract version information from type string");
    240239      }
     
    269268        }
    270269        return true;
    271       } catch (KeyNotFoundException) {
     270      }
     271      catch (KeyNotFoundException) {
    272272        throw new Exception("Could not extract version infomration from type string");
    273273      }
Note: See TracChangeset for help on using the changeset viewer.