Browse Source

remove json stuff

Karathan 5 years ago
parent
commit
df33ebf55e
1 changed files with 0 additions and 2 deletions
  1. 0
    2
      BlizzSharpClient.cs

+ 0
- 2
BlizzSharpClient.cs View File

@@ -14,7 +14,6 @@ namespace BlizzSharp
14 14
         private readonly Dictionary<long, Item> _itemLookup;
15 15
         private string _key;
16 16
         private HttpClient _http;
17
-        private JsonSerializer _serializer;
18 17
         private long _latestTimeStamp;
19 18
         public AuctionResponse CurrentAuctionResponse {get;set;}
20 19
         public AuctionResponse PreviousAuctionResponse {get;set;}
@@ -22,7 +21,6 @@ namespace BlizzSharp
22 21
         public BlizzSharpClient(string key)
23 22
         {
24 23
             _itemLookup = new Dictionary<long, Item>();
25
-            _serializer = new JsonSerializer();
26 24
             _http = new HttpClient();
27 25
             _http.BaseAddress = new Uri("https://eu.api.battle.net/wow/");
28 26
             _http.DefaultRequestHeaders.Accept.Clear();