Browse Source

Fixed compile warning

tags/docs-0.9
RogueException 9 years ago
parent
commit
ca792a798a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/ETF/ETFReader.cs

+ 1
- 1
src/Discord.Net/ETF/ETFReader.cs 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;


Loading…
Cancel
Save