Skip to content
This repository was archived by the owner on Oct 4, 2021. It is now read-only.

Commit 121230b

Browse files
committed
Don't check cancellationToken after all (it will always be canceled)
1 parent dca85f8 commit 121230b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger.VSTextView/QuickInfo/DebuggerQuickInfoSource.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,6 @@ private async Task EvaluateAndShowTooltipAsync (IAsyncQuickInfoSession session,
146146
// and do our own thing, notice VS does same thing
147147
await session.DismissAsync ();
148148
await provider.joinableTaskContext.Factory.SwitchToMainThreadAsync ();
149-
150-
if (cancellationToken.IsCancellationRequested)
151-
return;
152-
153149
lastView = view;
154150

155151
val.Name = debugInfo.Text;

0 commit comments

Comments
 (0)