Skip to content

Commit

Permalink
chore: remove unused usings
Browse files Browse the repository at this point in the history
  • Loading branch information
Confusingboat committed Apr 2, 2024
1 parent fdd1c22 commit cb66322
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
using StackExchange.Redis;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Distributed.Collections.Redis;

Expand Down
7 changes: 1 addition & 6 deletions src/Distributed.Collections.Redis/RedisSerializer.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json;
using System.Threading.Tasks;
using System.Text.Json;
using StackExchange.Redis;

namespace Distributed.Collections.Redis;
Expand Down
3 changes: 1 addition & 2 deletions src/Distributed.Collections/DistributedHashSet.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Concurrent;

namespace Distributed.Collections;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Shouldly;
using System.Collections.Frozen;

namespace Distributed.Collections.Tests;

Expand Down
8 changes: 1 addition & 7 deletions tests/Distributed.Collections.Tests/Extensions.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Distributed.Collections.Tests;
namespace Distributed.Collections.Tests;

public static class Extensions
{
Expand Down

0 comments on commit cb66322

Please sign in to comment.