Skip to content

Commit

Permalink
Merge pull request #109 from nathan-bell/master
Browse files Browse the repository at this point in the history
Remove redundant call to JsonConvert.DeserializeObject
  • Loading branch information
ezet authored Feb 10, 2017
2 parents 764fdf9 + f9c0d59 commit c9dac33
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion EveLib.DynamicCrest/JsonSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ public JsonSerializer(string dateFormat) : this() {
public T Deserialize<T>(string data) {
_trace.TraceEvent(TraceEventType.Verbose, 0, "JsonSerializer.Deserialize:Start");
dynamic result = JsonConvert.DeserializeObject<T>(data, Settings);
var res = JsonConvert.DeserializeObject(data, Settings);
_trace.TraceEvent(TraceEventType.Verbose, 0, "JsonSerializer.Deserialize:Complete");
return result;
}
Expand Down

0 comments on commit c9dac33

Please sign in to comment.