From 09cce200cf11be9f2ce61996ddb899a389bdeb0c Mon Sep 17 00:00:00 2001 From: David Date: Thu, 5 Dec 2019 17:28:17 -0800 Subject: [PATCH] Apply suggestions from code review Co-Authored-By: Sam Harwell --- .../Implementation/LanguageClient/LanguageServerClient.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/VisualStudio/Core/Def/Implementation/LanguageClient/LanguageServerClient.cs b/src/VisualStudio/Core/Def/Implementation/LanguageClient/LanguageServerClient.cs index c552a575432..a82a3c65b10 100644 --- a/src/VisualStudio/Core/Def/Implementation/LanguageClient/LanguageServerClient.cs +++ b/src/VisualStudio/Core/Def/Implementation/LanguageClient/LanguageServerClient.cs @@ -45,20 +45,20 @@ internal sealed class LanguageServerClient : ILanguageClient /// Gets the configuration section names for the language client. This may be null if the language client /// does not provide settings. /// - public IEnumerable ConfigurationSections { get; } = null; + public IEnumerable ConfigurationSections { get; } /// /// Gets the initialization options object the client wants to send when 'initialize' message is sent. /// This may be null if the client does not need custom initialization options. /// - public object InitializationOptions { get; } = null; + public object InitializationOptions { get; } /// /// Gets the list of file names to watch for changes. Changes will be sent to the server via 'workspace/didChangeWatchedFiles' /// message. The files to watch must be under the current active workspace. The file names can be specified as a relative /// paths to the exact file, or as glob patterns following the standard in .gitignore see https://www.kernel.org/pub/software/scm/git/docs/gitignore.html files. /// - public IEnumerable FilesToWatch { get; } = null; + public IEnumerable FilesToWatch { get; } #pragma warning disable CS0067 // event never used - implementing interface ILanguageClient public event AsyncEventHandler StartAsync; -- GitLab