From 2833d48acfc3b4ab0267addc7fafa8da12a1399f Mon Sep 17 00:00:00 2001 From: Marko Lahma Date: Tue, 28 Jul 2026 11:40:34 +0300 Subject: [PATCH] chore: remove unnecessary using to fix the Lint check `dotnet format --no-restore --verify-no-changes` currently fails on main with test/Docfx.Dotnet.Tests/SymbolUrlResolverUnitTest.cs(5,1): warning IDE0005: Using directive is unnecessary. No name in that file resolves through Microsoft.CodeAnalysis - the symbol types are only ever bound to `var` - so removing the directive leaves the file compiling unchanged. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_016uV6H9cTntzsoKiaJRBn4f --- test/Docfx.Dotnet.Tests/SymbolUrlResolverUnitTest.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/test/Docfx.Dotnet.Tests/SymbolUrlResolverUnitTest.cs b/test/Docfx.Dotnet.Tests/SymbolUrlResolverUnitTest.cs index 2fe299a1a5e..b2d68fbafde 100644 --- a/test/Docfx.Dotnet.Tests/SymbolUrlResolverUnitTest.cs +++ b/test/Docfx.Dotnet.Tests/SymbolUrlResolverUnitTest.cs @@ -2,7 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. using System.Text.RegularExpressions; -using Microsoft.CodeAnalysis; using Xunit; namespace Docfx.Dotnet.Tests;