提交 10db28d2 编写于 作者: C CyrusNajmabadi

Prevent boxing.

上级 5b5ccba3
......@@ -128,7 +128,7 @@ public static partial class SymbolFinder
if (string.IsNullOrWhiteSpace(name))
{
return ImmutableArray<ISymbol>.Empty;
return SpecializedCollections.EmptyEnumerable<ISymbol>();
}
return await FindDeclarationsAsync(
......@@ -148,7 +148,7 @@ public static partial class SymbolFinder
if (string.IsNullOrWhiteSpace(name))
{
return ImmutableArray<ISymbol>.Empty;
return SpecializedCollections.EmptyEnumerable<ISymbol>();
}
return await FindDeclarationsAsync(
......@@ -404,7 +404,7 @@ public static Task<IEnumerable<ISymbol>> FindSourceDeclarationsAsync(Project pro
if (string.IsNullOrWhiteSpace(name))
{
return ImmutableArray<ISymbol>.Empty;
return SpecializedCollections.EmptyEnumerable<ISymbol>();
}
using (Logger.LogBlock(FunctionId.SymbolFinder_Project_Name_FindSourceDeclarationsAsync, cancellationToken))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册