Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12475


Ignore:
Timestamp:
06/18/15 15:31:45 (9 years ago)
Author:
ascheibe
Message:

#2368 fixed compile warnings

File:
1 edited

Legend:

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

    r12012 r12475  
    167167    /// <param name="obj">The object.</param>
    168168    /// <param name="stream">The stream.</param>
    169     public new static void Serialize(object obj, Stream stream) {
     169    public static void Serialize(object obj, Stream stream) {
    170170      Serialize(obj, stream, ConfigurationService.Instance.GetConfiguration(new XmlFormat()));
    171171    }
     
    178178    /// <param name="stream">The stream.</param>
    179179    /// <param name="config">The configuration.</param>
    180     public new static void Serialize(object obj, Stream stream, Configuration config) {
     180    public static void Serialize(object obj, Stream stream, Configuration config) {
    181181      try {
    182182        using (StreamWriter writer = new StreamWriter(stream)) {
Note: See TracChangeset for help on using the changeset viewer.