Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/27/12 17:14:12 (13 years ago)
Author:
ascheibe
Message:

#1778

  • tried to clean up ItemTask/EngineTask overrides without breaking anything
  • added a unit test to check if ToString methods of IItems work
  • fixed ToString method of the Hive Plugin dto
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients/Plugin.cs

    r7259 r7532  
    2020#endregion
    2121
     22using System;
    2223using HeuristicLab.Common;
    2324
     
    4041
    4142    public override string ToString() {
    42       return string.Format("{0}-{1}", this.Name, this.Version.ToString());
     43      return string.Format("{0}-{1}", this.Name, this.Version == null ? new Version(0, 0).ToString() : this.Version.ToString());
    4344    }
    4445  }
Note: See TracChangeset for help on using the changeset viewer.