Skip to content

Commit

Permalink
Fix usings
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrzajac committed Jan 15, 2024
1 parent 68dfd9f commit 2e3d14c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;

using FluentAssertions;

using global::AutoFixture.Xunit2;

using Objectivity.AutoFixture.XUnit2.Core.Common;

using Xunit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public RoundRobinEnumerable(params T[] values)
}

[SuppressMessage("Blocker Bug", "S2190:Loops and recursions should not be infinite", Justification = "This is a round robin implementation.")]
[SuppressMessage("ReSharper", "IteratorNeverReturns", Justification = "This is a round robin implementation.")]
public IEnumerator<T> GetEnumerator()
{
while (true)
Expand Down

0 comments on commit 2e3d14c

Please sign in to comment.