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/Default/CompositeSerializers/EnumSerializer.cs

    r3742 r4068  
    2121
    2222using System;
     23using System.Collections.Generic;
    2324using HeuristicLab.Persistence.Core;
     25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2426using HeuristicLab.Persistence.Interfaces;
    25 using System.Collections.Generic;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2727
    2828namespace HeuristicLab.Persistence.Default.CompositeSerializers {
     
    5656        it.MoveNext();
    5757        return Enum.Parse(t, (string)it.Current.Value);
    58       } catch (InvalidOperationException e) {
     58      }
     59      catch (InvalidOperationException e) {
    5960        throw new PersistenceException("not enough meta information to recstruct enum", e);
    60       } catch (InvalidCastException e) {
     61      }
     62      catch (InvalidCastException e) {
    6163        throw new PersistenceException("invalid meta information found while trying to reconstruct enum", e);
    6264      }
Note: See TracChangeset for help on using the changeset viewer.