Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/10 11:23:37 (13 years ago)
Author:
gkronber
Message:

Reviewed classes HeatMap, HeatMapHistory, PopulationDiversityAnalyzer, DataTableHistory, !TSPPopulationDiversityAnalyzer and made minor changes. #1188

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/HeatMap.cs

    r4739 r4848  
    3939      get { return title; }
    4040      set {
    41         if (!(title.Equals(value) || (value == null) && (title == string.Empty))) {
    42           title = value == null ? string.Empty : value;
     41        if (value == null) value = string.Empty;
     42        if (title != value) {
     43          title = value;
    4344          OnTitleChanged();
    4445        }
Note: See TracChangeset for help on using the changeset viewer.