Changeset 10376
- Timestamp:
- 01/22/14 15:40:38 (11 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 10365-10366
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Collections/3.3/BidirectionalDictionary.cs
r9456 r10376 67 67 } 68 68 69 public IEnumerable<TFirst> First Values {69 public IEnumerable<TFirst> FirstKeys { 70 70 get { return firstToSecond.Keys; } 71 71 } 72 72 73 public IEnumerable<TSecond> Second Values {73 public IEnumerable<TSecond> SecondKeys { 74 74 get { return secondToFirst.Keys; } 75 75 } -
stable/HeuristicLab.Collections/3.3/BidirectionalLookup.cs
r9456 r10376 62 62 } 63 63 64 public IEnumerable< IEnumerable<TSecond>> FirstValues {65 get { return firstToSecond. Values.AsEnumerable(); }66 } 67 68 public IEnumerable< IEnumerable<TFirst>> SecondValues {69 get { return secondToFirst. Values.AsEnumerable(); }64 public IEnumerable<TFirst> FirstKeys { 65 get { return firstToSecond.Keys.AsEnumerable(); } 66 } 67 68 public IEnumerable<TSecond> SecondKeys { 69 get { return secondToFirst.Keys.AsEnumerable(); } 70 70 } 71 71 -
stable/HeuristicLab.Operators.Views.GraphVisualization.Views/3.3/GraphVisualizationInfoView.cs
r9456 r10376 84 84 85 85 private void UpdateContent() { 86 foreach (IConnectionInfo connectionInfo in this.connectionInfoConnectionMapping.First Values.ToList())86 foreach (IConnectionInfo connectionInfo in this.connectionInfoConnectionMapping.FirstKeys.ToList()) 87 87 this.RemoveConnectionInfo(connectionInfo); 88 88 this.connectionInfoConnectionMapping.Clear(); 89 foreach (IShapeInfo shapeInfo in this.shapeInfoShapeMapping.First Values.ToList())89 foreach (IShapeInfo shapeInfo in this.shapeInfoShapeMapping.FirstKeys.ToList()) 90 90 this.RemoveShapeInfo(shapeInfo); 91 91 this.shapeInfoShapeMapping.Clear();
Note: See TracChangeset
for help on using the changeset viewer.