Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/02/10 11:38:04 (14 years ago)
Author:
mkommend
Message:

changed symbols and grammars to be more efficient in respect to cloning, construction and deserialization (ticket #1073)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/GraphVisualizationInfoView.cs

    r3904 r3993  
    8484
    8585    private void UpdateContent() {
    86       foreach (IConnectionInfo connectionInfo in this.connectionInfoConnectionMapping.FirstValues)
     86      foreach (IConnectionInfo connectionInfo in this.connectionInfoConnectionMapping.FirstValues.ToList())
    8787        this.RemoveConnectionInfo(connectionInfo);
    8888      this.connectionInfoConnectionMapping.Clear();
    89       foreach (IShapeInfo shapeInfo in this.shapeInfoShapeMapping.FirstValues)
     89      foreach (IShapeInfo shapeInfo in this.shapeInfoShapeMapping.FirstValues.ToList())
    9090        this.RemoveShapeInfo(shapeInfo);
    9191      this.shapeInfoShapeMapping.Clear();
Note: See TracChangeset for help on using the changeset viewer.