Changeset 13906 for stable/HeuristicLab.Core/3.3/Collections/DirectedGraph
- Timestamp:
- 06/17/16 13:56:58 (8 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13800
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Core
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Core merged: 13800
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Core/3.3/Collections/DirectedGraph/Arc.cs
r12009 r13906 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.