提交 cbe9a9d1 编写于 作者: C CyrusNajmabadi

Remove uncalled method.

上级 4d1db310
......@@ -189,22 +189,6 @@ private bool ReadFrom(ObjectReader reader, List<int> result, CancellationToken c
return true;
}
private void WriteList(ObjectWriter writer, List<int> positions)
{
if (positions.Count > FlushThreshold)
{
writer.WriteInt32(NotSupported);
return;
}
writer.WriteInt32(positions.Count);
foreach (var position in positions)
{
writer.WriteInt32(position);
}
}
private static Dictionary<string, List<int>> CreateIdentifierLocations(Document document, SyntaxNode root, CancellationToken cancellationToken)
{
var syntaxFacts = document.GetLanguageService<ISyntaxFactsService>();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册