Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
artemiusgreat committed Oct 26, 2024
1 parent 2b55ee6 commit 3dcc811
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Canvas.Core/Canvas.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>4.5.4</Version>
<Version>4.5.5</Version>
<Description>Internal package used in Canvas.Views.Web</Description>
<Authors>artemiusgreat</Authors>
<Copyright>indemos.com</Copyright>
Expand Down
4 changes: 2 additions & 2 deletions Canvas.Core/Composers/GroupComposer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public override void Render(DimensionModel domain)
continue;
}

foreach (var series in seriesGroup.Groups)
foreach (var series in seriesGroup.Groups.ToList())
{
series.Value.Composer = this;
series.Value.CreateShape(i, series.Key, Items);
Expand All @@ -54,7 +54,7 @@ protected override (double, double, double) GetExtremes(int i, double min, doubl
return (min, max, average);
}

foreach (var shape in series.Groups)
foreach (var shape in series.Groups.ToList())
{
shape.Value.Composer = this;

Expand Down
2 changes: 1 addition & 1 deletion Canvas.Core/Shapes/Shape.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public class Shape : IShape
/// </summary>
public Shape()
{
Groups = new ConcurrentDictionary<string, IShape>();
Groups = new Dictionary<string, IShape>();
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Canvas.Views.Web/Canvas.Views.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PropertyGroup>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>4.5.4</Version>
<Version>4.5.5</Version>
<PackageTags>finance chart opengl canvas trading gdi stock direct2d</PackageTags>
<Authors>artemiusgreat</Authors>
<Copyright>indemos.com</Copyright>
Expand Down

0 comments on commit 3dcc811

Please sign in to comment.