提交 eff359e3 编写于 作者: C CyrusNajmabadi

Fix code break caused by misordered merges.

上级 0b160c3a
......@@ -32,11 +32,11 @@ public DefinitionTrackingContext(IFindUsagesContext underlyingContext)
public CancellationToken CancellationToken
=> _underlyingContext.CancellationToken;
public void ReportMessage(string message)
=> _underlyingContext.ReportMessage(message);
public Task ReportMessageAsync(string message)
=> _underlyingContext.ReportMessageAsync(message);
public void SetSearchTitle(string title)
=> _underlyingContext.SetSearchTitle(title);
public Task SetSearchTitleAsync(string title)
=> _underlyingContext.SetSearchTitleAsync(title);
public Task OnReferenceFoundAsync(SourceReferenceItem reference)
=> _underlyingContext.OnReferenceFoundAsync(reference);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册