Removed empty array

This commit is contained in:
David Fowler 2016-11-07 23:57:09 -08:00
parent 7d6b247780
commit a5d38f4b64
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ namespace Microsoft.AspNetCore.SignalR
private readonly Dictionary<string, Func<Connection, InvocationDescriptor, Task<InvocationResultDescriptor>>> _callbacks
= new Dictionary<string, Func<Connection, InvocationDescriptor, Task<InvocationResultDescriptor>>>(StringComparer.OrdinalIgnoreCase);
private readonly Dictionary<string, Type[]> _paramTypes = new Dictionary<string, Type[]>();
private static object[] EmptyArray = new object[0];
private readonly HubLifetimeManager<THub> _lifetimeManager;
private readonly IHubContext<THub, TClient> _hubContext;