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/Xml/Compact/DoubleList2XmlSerializer.cs

    r3937 r4068  
    2020#endregion
    2121
    22 using System.Collections;
     22using System;
    2323using System.Collections.Generic;
    24 using System;
    25 using System.Linq;
     24using System.Text;
     25using HeuristicLab.Persistence.Auxiliary;
    2626using HeuristicLab.Persistence.Core;
    2727using HeuristicLab.Persistence.Default.Xml.Primitive;
    28 using System.Text;
    29 using HeuristicLab.Persistence.Auxiliary;
    3028
    3129namespace HeuristicLab.Persistence.Default.Xml.Compact {
     
    4846        }
    4947        return list;
    50       } catch (InvalidCastException e) {
     48      }
     49      catch (InvalidCastException e) {
    5150        throw new PersistenceException("Invalid element data during reconstruction of List<double>.", e);
    52       } catch (OverflowException e) {
     51      }
     52      catch (OverflowException e) {
    5353        throw new PersistenceException("Overflow during element parsing while trying to reconstruct List<double>.", e);
    5454      }
Note: See TracChangeset for help on using the changeset viewer.