From 285b549f3dad74367cd155845b41691198b46a5c Mon Sep 17 00:00:00 2001 From: Eric Rozell Date: Tue, 22 Nov 2016 09:31:31 -0500 Subject: [PATCH] chore(NativeModuleBase): Clean up unused static in NativeModuleBase (#893) Fixes #870 --- ReactWindows/ReactNative.Shared/Bridge/NativeModuleBase.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/ReactWindows/ReactNative.Shared/Bridge/NativeModuleBase.cs b/ReactWindows/ReactNative.Shared/Bridge/NativeModuleBase.cs index ac77fae202d..97bd95d346a 100644 --- a/ReactWindows/ReactNative.Shared/Bridge/NativeModuleBase.cs +++ b/ReactWindows/ReactNative.Shared/Bridge/NativeModuleBase.cs @@ -34,8 +34,6 @@ namespace ReactNative.Bridge /// public abstract class NativeModuleBase : INativeModule { - private static readonly MethodInfo s_toObjectGeneric = ((MethodInfo)ReflectionHelpers.InfoOf((JToken token) => token.ToObject())).GetGenericMethodDefinition(); - private static readonly IReadOnlyDictionary s_emptyConstants = new Dictionary();