From a5d38f4b648332ce1db1bac36991213a245a939d Mon Sep 17 00:00:00 2001 From: David Fowler Date: Mon, 7 Nov 2016 23:57:09 -0800 Subject: [PATCH] Removed empty array --- src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs b/src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs index 1b22100e90..d3051bdcf5 100644 --- a/src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs +++ b/src/Microsoft.AspNetCore.SignalR/HubEndPoint.cs @@ -30,7 +30,6 @@ namespace Microsoft.AspNetCore.SignalR private readonly Dictionary>> _callbacks = new Dictionary>>(StringComparer.OrdinalIgnoreCase); private readonly Dictionary _paramTypes = new Dictionary(); - private static object[] EmptyArray = new object[0]; private readonly HubLifetimeManager _lifetimeManager; private readonly IHubContext _hubContext;