Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/17/16 13:56:58 (8 years ago)
Author:
ascheibe
Message:

#2600 merged r13800 into stable

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Core

  • stable/HeuristicLab.Core/3.3/Collections/DirectedGraph/Arc.cs

    r12009 r13906  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    3939      get { return label; }
    4040      set {
    41         if (label.Equals(value)) return;
     41        if (label == value) return;
    4242        label = value;
    4343        OnChanged(this, EventArgs.Empty);
     
    8383
    8484  [StorableClass]
    85   public class Arc<T> : Arc, IArc<T> where T : class,IDeepCloneable {
     85  public class Arc<T> : Arc, IArc<T> where T : class, IDeepCloneable {
    8686    [Storable]
    8787    protected T data;
Note: See TracChangeset for help on using the changeset viewer.