From cede85fb2c04411d235efb2fa8d2e773b42f4efe Mon Sep 17 00:00:00 2001 From: JieCarolHu Date: Wed, 21 Mar 2018 16:44:29 -0700 Subject: [PATCH] remove trailing whitespaces --- .../QuickInfoSourceProvider.QuickInfoSource.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/EditorFeatures/Core/Implementation/IntelliSense/QuickInfo/QuickInfoSourceProvider.QuickInfoSource.cs b/src/EditorFeatures/Core/Implementation/IntelliSense/QuickInfo/QuickInfoSourceProvider.QuickInfoSource.cs index cf0627ab5f7..5df2906d261 100644 --- a/src/EditorFeatures/Core/Implementation/IntelliSense/QuickInfo/QuickInfoSourceProvider.QuickInfoSource.cs +++ b/src/EditorFeatures/Core/Implementation/IntelliSense/QuickInfo/QuickInfoSourceProvider.QuickInfoSource.cs @@ -19,11 +19,11 @@ namespace Microsoft.CodeAnalysis.Editor.Implementation.IntelliSense.QuickInfo internal partial class QuickInfoSourceProvider { private class QuickInfoSource : IAsyncQuickInfoSource - { + { private readonly ITextBuffer _subjectBuffer; public QuickInfoSource(ITextBuffer subjectBuffer) - { + { _subjectBuffer = subjectBuffer; } @@ -47,12 +47,12 @@ public async Task GetQuickInfoItemAsync(IAsyncQuickIn { return null; } - + try { using (Internal.Log.Logger.LogBlock(FunctionId.Get_QuickInfo_Async, cancellationToken)) { - cancellationToken.ThrowIfCancellationRequested(); + cancellationToken.ThrowIfCancellationRequested(); var item = await service.GetQuickInfoAsync(document, triggerPoint.Value, cancellationToken).ConfigureAwait(false); if (item != null) @@ -69,8 +69,8 @@ public async Task GetQuickInfoItemAsync(IAsyncQuickIn { throw ExceptionUtilities.Unreachable; } - } - + } + public void Dispose() { } -- GitLab