Skip to content

Commit

Permalink
chore: remove old commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
rvazarkar committed Jul 22, 2024
1 parent 3dea7e4 commit 06fe155
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions test/unit/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,6 @@ internal static string B64ToString(string base64)

internal static class Extensions
{
// internal static async Task<T[]> ToArrayAsync<T>(this IAsyncEnumerable<T> items,
// CancellationToken cancellationToken = default)
// {
// var results = new List<T>();
// await foreach (var item in items.WithCancellation(cancellationToken)
// .ConfigureAwait(false))
// results.Add(item);
// return results.ToArray();
// }

internal static bool IsArray(this object obj)
{
var valueType = obj?.GetType();
Expand Down

0 comments on commit 06fe155

Please sign in to comment.