Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
CypherPotato committed Jul 23, 2024
1 parent c7605d7 commit 909b6ad
Show file tree
Hide file tree
Showing 14 changed files with 443 additions and 147 deletions.
2 changes: 1 addition & 1 deletion src/Entity/CircularBuffer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Sisk.Core.Entity;
/// </summary>
/// <typeparam name="T">The type of elements stored in the buffer.</typeparam>
/// <exclude/>
public class CircularBuffer<T> : IEnumerable<T>, IReadOnlyList<T>
public sealed class CircularBuffer<T> : IEnumerable<T>, IReadOnlyList<T>
{
private T[] items;

Expand Down
Loading

0 comments on commit 909b6ad

Please sign in to comment.