Fixed compile warning

This commit is contained in:
RogueException
2016-02-16 16:05:17 -04:00
parent 964ba82928
commit ca792a798a

View File

@@ -12,7 +12,7 @@ namespace Discord.ETF
{
public class ETFReader : IDisposable
{
private static readonly ConcurrentDictionary<Type, Delegate> _deserializers;
private static readonly ConcurrentDictionary<Type, Delegate> _deserializers = new ConcurrentDictionary<Type, Delegate>();
private static readonly Dictionary<Type, MethodInfo> _readMethods = GetPrimitiveReadMethods();
private readonly Stream _stream;