diff options
| author | crobibero <cody@robibe.ro> | 2020-06-03 09:12:12 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-06-03 09:12:12 -0600 |
| commit | 8b59934ccb53fda0ccfda2e914192ac3d1d11ad7 (patch) | |
| tree | 5868996e2e289448e38f073597118a569686156f | |
| parent | 01a5103fef83bbbef230faf2303d16648981a5d2 (diff) | |
remove extra Clear call
| -rw-r--r-- | MediaBrowser.Common/Json/Converters/JsonNonStringKeyDictionaryConverter.cs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Json/Converters/JsonNonStringKeyDictionaryConverter.cs b/MediaBrowser.Common/Json/Converters/JsonNonStringKeyDictionaryConverter.cs index f2ddd7fea..636ef5372 100644 --- a/MediaBrowser.Common/Json/Converters/JsonNonStringKeyDictionaryConverter.cs +++ b/MediaBrowser.Common/Json/Converters/JsonNonStringKeyDictionaryConverter.cs @@ -73,7 +73,6 @@ namespace MediaBrowser.Common.Json.Converters convertedDictionary[k?.ToString()] = v; } JsonSerializer.Serialize(writer, convertedDictionary, options); - convertedDictionary.Clear(); } } } |
