We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e50dec8 commit eb718ceCopy full SHA for eb718ce
RetailCoder.VBE/UI/CodeInspections/CodeInspectionsDockablePresenter.cs
@@ -198,6 +198,11 @@ private async Task RefreshAsync(CancellationToken token)
198
var projectParseResult = await _inspector.Parse(VBE.ActiveVBProject, this);
199
_results = await _inspector.FindIssuesAsync(projectParseResult, token);
200
}
201
+ catch (TaskCanceledException)
202
+ {
203
+ // If FindIssuesAsync is canceled, we can leave the old results or
204
+ // create a new List. Let's leave the old ones for now.
205
+ }
206
catch (COMException)
207
{
208
// burp
0 commit comments