From 0e8e4de4ac26bb5cfb8b554ed461362c5b12fe5d Mon Sep 17 00:00:00 2001 From: RieBi Date: Fri, 14 Jun 2024 16:43:35 +0200 Subject: [PATCH] Remove unnecessary usings --- ...EmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs | 7 ------- ...ShouldNotBeUsedForCollectionDoesNotContainCheckTests.cs | 4 ---- ...dNotBeUsedForCollectionDoesNotContainCheckFixerTests.cs | 4 ---- ...EmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs | 5 ----- 4 files changed, 20 deletions(-) diff --git a/src/xunit.analyzers.fixes/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs b/src/xunit.analyzers.fixes/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs index 4cb09950..a70927e2 100644 --- a/src/xunit.analyzers.fixes/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs +++ b/src/xunit.analyzers.fixes/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs @@ -1,19 +1,12 @@ -using System; -using System.Collections.Generic; using System.Composition; -using System.Text; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis; -using Xunit.Analyzers.Fixes; using System.Threading.Tasks; -using Xunit.Analyzers; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CodeActions; using System.Threading; using Microsoft.CodeAnalysis.Editing; -using Microsoft.CodeAnalysis.Operations; using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory; -using Microsoft.CodeAnalysis.CSharp; namespace Xunit.Analyzers.Fixes; diff --git a/src/xunit.analyzers.tests/Analyzers/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheckTests.cs b/src/xunit.analyzers.tests/Analyzers/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheckTests.cs index 4eb05e5b..0bce0dc1 100644 --- a/src/xunit.analyzers.tests/Analyzers/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheckTests.cs +++ b/src/xunit.analyzers.tests/Analyzers/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheckTests.cs @@ -1,9 +1,5 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; using System.Threading.Tasks; -using Microsoft.CodeAnalysis.Testing; using Xunit; using Verify = CSharpVerifier; diff --git a/src/xunit.analyzers.tests/Fixes/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheckFixerTests.cs b/src/xunit.analyzers.tests/Fixes/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheckFixerTests.cs index f7f8a73d..3e317a83 100644 --- a/src/xunit.analyzers.tests/Fixes/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheckFixerTests.cs +++ b/src/xunit.analyzers.tests/Fixes/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheckFixerTests.cs @@ -1,7 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; using System.Threading.Tasks; using Xunit; using Xunit.Analyzers.Fixes; diff --git a/src/xunit.analyzers/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs b/src/xunit.analyzers/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs index 4c5ac662..c2ee67df 100644 --- a/src/xunit.analyzers/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs +++ b/src/xunit.analyzers/X2000/AssertEmptyShouldNotBeUsedForCollectionDoesNotContainCheck.cs @@ -1,12 +1,7 @@ -using System; -using System.Collections.Generic; -using System.Text; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis; -using Xunit.Analyzers; using Microsoft.CodeAnalysis.Operations; using Microsoft.CodeAnalysis.CSharp; -using System.Collections.Immutable; namespace Xunit.Analyzers;