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)

Location:
trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml
Files:
35 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Compact/ByteArray2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    2622
    2723namespace HeuristicLab.Persistence.Default.Xml.Compact {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Compact/CompactXmlSerializerBase.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using HeuristicLab.Persistence.Interfaces;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2522
    2623namespace HeuristicLab.Persistence.Default.Xml.Compact {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Compact/DoubleArray2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    2422using HeuristicLab.Persistence.Default.Xml.Primitive;
    2523
  • 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      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Compact/IntArray2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    2422
    2523namespace HeuristicLab.Persistence.Default.Xml.Compact {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Compact/IntList2XmlSerializer.cs

    r3742 r4068  
    2222using System.Collections;
    2323using System.Collections.Generic;
    24 using System;
    25 using HeuristicLab.Persistence.Core;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2724
    2825namespace HeuristicLab.Persistence.Default.Xml.Compact {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Compact/NumberArray2XmlSerializerBase.cs

    r3945 r4068  
    2020#endregion
    2121
     22using System;
    2223using System.Collections;
     24using System.Collections.Generic;
    2325using System.Text;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System;
     26using HeuristicLab.Persistence.Auxiliary;
    2627using HeuristicLab.Persistence.Core;
    2728using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 using HeuristicLab.Persistence.Auxiliary;
    29 using HeuristicLab.Tracing;
    30 using System.Collections.Generic;
    3129
    3230namespace HeuristicLab.Persistence.Default.Xml.Compact {
     
    5149        lengths[i] = a.GetLength(i);
    5250        nElements *= lengths[i];
    53       }     
     51      }
    5452      sb.EnsureCapacity(sb.Length + nElements * 3);
    5553      for (int i = 0; i < a.Rank; i++) {
     
    7169          }
    7270        }
    73       }     
     71      }
    7472      return new XmlString(sb.ToString());
    7573    }
     
    9290        Array a = Array.CreateInstance(this.SourceType.GetElementType(), lengths, lowerBounds);
    9391        int[] positions = (int[])lowerBounds.Clone();
    94         while (values.MoveNext()) {         
     92        while (values.MoveNext()) {
    9593          a.SetValue(ParseValue(values.Current), positions);
    9694          positions[0] += 1;
     
    107105          throw new PersistenceException("Insufficient number of elements while trying to fill number array.");
    108106        return (T)(object)a;
    109       } catch (InvalidOperationException e) {
     107      }
     108      catch (InvalidOperationException e) {
    110109        throw new PersistenceException("Insufficient information to rebuild number array.", e);
    111       } catch (InvalidCastException e) {
     110      }
     111      catch (InvalidCastException e) {
    112112        throw new PersistenceException("Invalid element data or meta data to reconstruct number array.", e);
    113       } catch (OverflowException e) {
     113      }
     114      catch (OverflowException e) {
    114115        throw new PersistenceException("Overflow during element parsing while trying to reconstruct number array.", e);
    115116      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Compact/NumberEnumeration2XmlSerializerBase.cs

    r3937 r4068  
    2020#endregion
    2121
     22using System;
    2223using System.Collections;
    2324using System.Text;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System;
     25using HeuristicLab.Persistence.Auxiliary;
    2626using HeuristicLab.Persistence.Core;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 using HeuristicLab.Persistence.Auxiliary;
    2928
    3029namespace HeuristicLab.Persistence.Default.Xml.Compact {
     
    5554        }
    5655        return (T)enumeration;
    57       } catch (InvalidCastException e) {
     56      }
     57      catch (InvalidCastException e) {
    5858        throw new PersistenceException("Invalid element data during reconstruction of number enumerable.", e);
    59       } catch (OverflowException e) {
     59      }
     60      catch (OverflowException e) {
    6061        throw new PersistenceException("Overflow during element parsing while trying to reconstruct number enumerable.", e);
    6162      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/EasyXmlGenerator.cs

    r3937 r4068  
    2020#endregion
    2121
     22using System;
    2223using System.Collections.Generic;
    23 using System;
    24 using System.Text;
     24using System.IO;
     25using HeuristicLab.Persistence.Auxiliary;
     26using HeuristicLab.Persistence.Core;
     27using HeuristicLab.Persistence.Core.Tokens;
    2528using HeuristicLab.Persistence.Interfaces;
    26 using HeuristicLab.Persistence.Core;
    27 using System.IO;
    28 using ICSharpCode.SharpZipLib.Zip;
    2929using HeuristicLab.Tracing;
    30 using HeuristicLab.Persistence.Core.Tokens;
    31 using System.IO.Compression;
    32 using HeuristicLab.Persistence.Auxiliary;
    3330
    3431namespace HeuristicLab.Persistence.Default.Xml {
     
    146143    /// <param name="filename">The filename.</param>
    147144    /// <param name="config">The configuration.</param>
    148     public static void Serialize(object obj, string filename, Configuration config) {     
     145    public static void Serialize(object obj, string filename, Configuration config) {
    149146      try {
    150147        string tempfile = Path.GetTempFileName();
     
    157154        File.Copy(tempfile, filename, true);
    158155        File.Delete(tempfile);
    159       } catch (Exception) {
     156      }
     157      catch (Exception) {
    160158        Logger.Warn("Exception caught, no data has been written.");
    161159        throw;
     
    180178    /// <param name="stream">The stream.</param>
    181179    /// <param name="config">The configuration.</param>
    182     public static void Serialize(object obj, Stream stream, Configuration config) {     
     180    public static void Serialize(object obj, Stream stream, Configuration config) {
    183181      try {
    184182        using (StreamWriter writer = new StreamWriter(stream)) {
     
    192190          writer.Flush();
    193191        }
    194       } catch (PersistenceException) {
     192      }
     193      catch (PersistenceException) {
    195194        throw;
    196       } catch (Exception e) {
     195      }
     196      catch (Exception e) {
    197197        throw new PersistenceException("Unexpected exception during Serialization.", e);
    198198      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Bool2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2722
    2823namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Byte2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2722
    2823namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Char2XmlFormatter.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    2322using HeuristicLab.Persistence.Core;
    2423using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2724
    2825namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/DateTime2XmlSerializer.cs

    r3742 r4068  
    2222using System;
    2323using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    2524
    2625namespace HeuristicLab.Persistence.Default.Xml.Primitive {
     
    3534      try {
    3635        return new DateTime(long.Parse(x.Data));
    37       } catch (Exception e) {
     36      }
     37      catch (Exception e) {
    3838        throw new PersistenceException("Exception caugth while trying to reconstruct DateTime object.", e);
    3939      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Decimal2XmlSerializer.cs

    r3742 r4068  
    2121
    2222using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    2623using System.Globalization;
    2724
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Double2XmlSerializer.cs

    r3742 r4068  
    2121
    2222using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    2623using System.Globalization;
    2724
     
    5451  }
    5552
    56  
    57  
     53
     54
    5855
    5956}
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Float2XmlSerializer.cs

    r3742 r4068  
    2121
    2222using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    2623using System.Globalization;
    2724
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Guid2XmlSerializer.cs

    r3742 r4068  
    2121
    2222using System;
     23using System.Globalization;
    2324using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Text;
    26 using System.Text.RegularExpressions;
    27 using System.Globalization;
    2825
    2926
     
    3936      try {
    4037        return new Guid(t.Data);
    41       } catch (FormatException x) {
     38      }
     39      catch (FormatException x) {
    4240        throw new PersistenceException("Cannot parse Guid string representation.", x);
    43       } catch (OverflowException x) {
     41      }
     42      catch (OverflowException x) {
    4443        throw new PersistenceException("Overflow during Guid parsing.", x);
    4544      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Int2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2722
    2823namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Long2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2722
    2823namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/PrimitiveXmlSerializerBase.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using HeuristicLab.Persistence.Interfaces;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2522
    2623namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/SByte2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2722
    2823namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/Short2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2722
    2823namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/SimpleNumber2XmlSerializerBase.cs

    r3742 r4068  
    2121
    2222using System;
     23using System.Reflection;
    2324using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2725
    2826namespace HeuristicLab.Persistence.Default.Xml.Primitive {
     
    4644      try {
    4745        return (T)ParseMethod.Invoke(null, new[] { x.Data });
    48       } catch (Exception e) {
     46      }
     47      catch (Exception e) {
    4948        throw new PersistenceException("Could not parse simple number.", e);
    5049      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/String2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    2522using System.Text;
    2623using System.Text.RegularExpressions;
    27 using System.Globalization;
     24using HeuristicLab.Persistence.Core;
    2825
    2926
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/System.Drawing/Bitmap2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    2622using System.Drawing;
     23using System.Drawing.Imaging;
    2724using System.IO;
    28 using System.Drawing.Imaging;
    29 using System.Text.RegularExpressions;
    30 using HeuristicLab.Persistence.Core;
    3125using HeuristicLab.Persistence.Default.Xml.Compact;
    3226
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/TimeSpan2XmlSerializer.cs

    r3742 r4068  
    2222using System;
    2323using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Text;
    26 using System.Text.RegularExpressions;
    27 using System.Globalization;
    2824
    2925
     
    3935      try {
    4036        return TimeSpan.Parse(t.Data);
    41       } catch (FormatException x) {
     37      }
     38      catch (FormatException x) {
    4239        throw new PersistenceException("Cannot parse TimeSpan string representation.", x);
    43       } catch (OverflowException x) {
     40      }
     41      catch (OverflowException x) {
    4442        throw new PersistenceException("Overflow during TimeSpan parsing.", x);
    4543      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/UInt2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2822
    2923namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/ULong2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2722
    2823namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/Primitive/UShort2XmlSerializer.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Interfaces;
    25 using System.Reflection;
    26 using System.Globalization;
    2722
    2823namespace HeuristicLab.Persistence.Default.Xml.Primitive {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlFormat.cs

    r3742 r4068  
    2020#endregion
    2121
     22using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2223using HeuristicLab.Persistence.Interfaces;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2524
    2625namespace HeuristicLab.Persistence.Default.Xml {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlGenerator.cs

    r3944 r4068  
    2020#endregion
    2121
     22using System;
    2223using System.Collections.Generic;
    23 using System;
     24using System.IO;
     25using System.IO.Compression;
     26using System.Linq;
    2427using System.Text;
    25 using System.Linq;
     28using HeuristicLab.Persistence.Core;
     29using HeuristicLab.Persistence.Core.Tokens;
    2630using HeuristicLab.Persistence.Interfaces;
    27 using HeuristicLab.Persistence.Core;
    28 using System.IO;
     31using HeuristicLab.Tracing;
    2932using ICSharpCode.SharpZipLib.Zip;
    30 using HeuristicLab.Tracing;
    31 using HeuristicLab.Persistence.Core.Tokens;
    32 using System.IO.Compression;
    3333
    3434namespace HeuristicLab.Persistence.Default.Xml {
     
    257257          {"typeName", lastTypeToken.TypeName },
    258258          {"serializer", lastTypeToken.Serializer }});
    259       } finally {
     259      }
     260      finally {
    260261        lastTypeToken = null;
    261262      }
     
    367368        File.Copy(tempfile, filename, true);
    368369        File.Delete(tempfile);
    369       } catch (Exception) {
     370      }
     371      catch (Exception) {
    370372        Logger.Warn("Exception caught, no data has been written.");
    371373        throw;
     
    413415          writer.Flush();
    414416        }
    415       } catch (PersistenceException) {
     417      }
     418      catch (PersistenceException) {
    416419        throw;
    417       } catch (Exception e) {
     420      }
     421      catch (Exception e) {
    418422        throw new PersistenceException("Unexpected exception during Serialization.", e);
    419423      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlParser.cs

    r3913 r4068  
    2020#endregion
    2121
    22 using System.Xml;
    23 using System.Collections.Generic;
    2422using System;
    2523using System.Collections;
     24using System.Collections.Generic;
    2625using System.IO;
     26using System.IO.Compression;
     27using System.Xml;
    2728using HeuristicLab.Persistence.Core;
     29using HeuristicLab.Persistence.Core.Tokens;
    2830using HeuristicLab.Persistence.Interfaces;
    2931using ICSharpCode.SharpZipLib.Zip;
    30 using HeuristicLab.Persistence.Core.Tokens;
    31 using System.IO.Compression;
    3232
    3333namespace HeuristicLab.Persistence.Default.Xml {
     
    7575        try {
    7676          iterator = handlers[reader.Name].Invoke();
    77         } catch (KeyNotFoundException) {
     77        }
     78        catch (KeyNotFoundException) {
    7879          throw new PersistenceException(String.Format(
    7980            "Invalid XML tag \"{0}\" in persistence file.",
     
    175176        }
    176177        return typeCache;
    177       } catch (PersistenceException) {
     178      }
     179      catch (PersistenceException) {
    178180        throw;
    179       } catch (Exception e) {
     181      }
     182      catch (Exception e) {
    180183        throw new PersistenceException("Unexpected exception during type cache parsing.", e);
    181184      }
     
    193196          return Deserialize(file);
    194197        }
    195       } finally {
     198      }
     199      finally {
    196200        TimeSpan end = System.Diagnostics.Process.GetCurrentProcess().TotalProcessorTime;
    197201        Tracing.Logger.Info(string.Format(
     
    224228          return deserializer.Deserialize(parser);
    225229        }
    226       } catch (PersistenceException) {
     230      }
     231      catch (PersistenceException) {
    227232        throw;
    228       } catch (Exception x) {
     233      }
     234      catch (Exception x) {
    229235        throw new PersistenceException("Unexpected exception during deserialization", x);
    230236      }
     
    255261        zipFile.Close();
    256262        return result;
    257       } catch (PersistenceException) {
     263      }
     264      catch (PersistenceException) {
    258265        throw;
    259       } catch (Exception e) {
     266      }
     267      catch (Exception e) {
    260268        throw new PersistenceException("Unexpected exception during deserialization", e);
    261269      }
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlSerializerBase.cs

    r3742 r4068  
    2121
    2222using HeuristicLab.Persistence.Interfaces;
    23 using HeuristicLab.Persistence.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2523
    2624namespace HeuristicLab.Persistence.Default.Xml {
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlString.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using HeuristicLab.Persistence.Interfaces;
    23 using HeuristicLab.Persistence.Core;
    2422using System.Text;
    2523using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HeuristicLab.Persistence.Interfaces;
    2625
    2726namespace HeuristicLab.Persistence.Default.Xml {
     
    3029  /// XML friendly encapsulation of string data.
    3130  /// </summary>
    32   [StorableClass] 
     31  [StorableClass]
    3332  public class XmlString : ISerialData {
    3433
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlStringConstants.cs

    r3742 r4068  
    2020#endregion
    2121
    22 using System.Collections.Generic;
    23 using System;
    24 using System.Text;
    25 using HeuristicLab.Persistence.Interfaces;
    26 using HeuristicLab.Persistence.Core;
    27 using System.IO;
    28 using ICSharpCode.SharpZipLib.Zip;
    29 using HeuristicLab.Tracing;
    30 using HeuristicLab.Persistence.Core.Tokens;
    3122
    3223namespace HeuristicLab.Persistence.Default.Xml {
     
    4132    public const string METAINFO = "METAINFO";
    4233  }
    43  
     34
    4435}
Note: See TracChangeset for help on using the changeset viewer.