Changeset 13800 for trunk/sources/HeuristicLab.Core/3.3/Collections
- Timestamp:
- 04/27/16 10:41:10 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Collections/DirectedGraph/Arc.cs
r12012 r13800 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 5Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 39 39 get { return label; } 40 40 set { 41 if (label .Equals(value)) return;41 if (label == value) return; 42 42 label = value; 43 43 OnChanged(this, EventArgs.Empty); … … 83 83 84 84 [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 { 86 86 [Storable] 87 87 protected T data;
Note: See TracChangeset
for help on using the changeset viewer.