Changeset 12360
- Timestamp:
- 04/29/15 13:23:31 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Collections/DirectedGraph/Vertex.cs
r12012 r12360 35 35 get { return label; } 36 36 set { 37 if ( label.Equals(value)) return;37 if (String.Equals(Label, value)) return; 38 38 label = value; 39 39 OnChanged(this, EventArgs.Empty);
Note: See TracChangeset
for help on using the changeset viewer.