From 40274e45d0f6f1da27b534d32666d46e13b5982e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Matou=C5=A1ek?= Date: Wed, 15 Jan 2025 15:14:15 -0800 Subject: [PATCH] Remove partial modifier from LspTestWorkspace class --- .../Protocol.TestUtilities/Workspaces/LspTestWorkspace.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LanguageServer/Protocol.TestUtilities/Workspaces/LspTestWorkspace.cs b/src/LanguageServer/Protocol.TestUtilities/Workspaces/LspTestWorkspace.cs index 96830c508dd90..976ec1b093a14 100644 --- a/src/LanguageServer/Protocol.TestUtilities/Workspaces/LspTestWorkspace.cs +++ b/src/LanguageServer/Protocol.TestUtilities/Workspaces/LspTestWorkspace.cs @@ -1,4 +1,4 @@ -// Licensed to the .NET Foundation under one or more agreements. +// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. @@ -12,7 +12,7 @@ namespace Microsoft.CodeAnalysis.Test.Utilities; -public partial class LspTestWorkspace : TestWorkspace, ILspWorkspace +public class LspTestWorkspace : TestWorkspace, ILspWorkspace { private readonly bool _supportsLspMutation;