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

    r3742 r4068  
    2222using System;
    2323using System.Collections;
     24using System.Collections.Generic;
    2425using System.Reflection;
     26using HeuristicLab.Persistence.Auxiliary;
    2527using HeuristicLab.Persistence.Core;
     28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2629using HeuristicLab.Persistence.Interfaces;
    27 using System.Collections.Generic;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    29 using HeuristicLab.Persistence.Auxiliary;
    3030
    3131namespace HeuristicLab.Persistence.Default.CompositeSerializers {
     
    5353        return "interface IEnumerable not implemented";
    5454      if (type.GetMethod("Add") == null)
    55         return "no 'Add()' method";     
     55        return "no 'Add()' method";
    5656      return "no 'Add()' method with one argument";
    5757    }
     
    7676        foreach (var tag in tags)
    7777          addMethod.Invoke(instance, new[] { tag.Value });
    78       } catch (Exception e) {
     78      }
     79      catch (Exception e) {
    7980        throw new PersistenceException("Exception caught while trying to populate enumerable.", e);
    8081      }
Note: See TracChangeset for help on using the changeset viewer.