aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Services/ServiceExec.cs
diff options
context:
space:
mode:
authorAndrew Rabert <6550543+nvllsvm@users.noreply.github.com>2019-02-08 00:08:35 -0500
committerGitHub <noreply@github.com>2019-02-08 00:08:35 -0500
commitee3a4531a00d0577fca6807a5a4ab031f7987d8e (patch)
tree244b35a2e15c7278630ef34599976fbce57c8ac9 /Emby.Server.Implementations/Services/ServiceExec.cs
parentd6d9fce898ce058229a6a88800856424180bd892 (diff)
parent70c85925af31ee341f87fced39a67ab7fb4eed77 (diff)
Merge pull request #831 from Bond-009/hashset
Move some arrays to generics
Diffstat (limited to 'Emby.Server.Implementations/Services/ServiceExec.cs')
-rw-r--r--Emby.Server.Implementations/Services/ServiceExec.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Services/ServiceExec.cs b/Emby.Server.Implementations/Services/ServiceExec.cs
index aa67a3601..79f5c59e6 100644
--- a/Emby.Server.Implementations/Services/ServiceExec.cs
+++ b/Emby.Server.Implementations/Services/ServiceExec.cs
@@ -23,8 +23,6 @@ namespace Emby.Server.Implementations.Services
"POLL", "SUBSCRIBE", "UNSUBSCRIBE"
};
- public static HashSet<string> AllVerbsSet = new HashSet<string>(AllVerbs);
-
public static List<MethodInfo> GetActions(this Type serviceType)
{
var list = new List<MethodInfo>();