Remove whitespace

This commit is contained in:
crobibero 2020-06-12 06:53:47 -06:00
parent 4c0dd10fb3
commit 5b6e8fb22c
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ namespace MediaBrowser.Common.Json.Converters
var convertedDictionary = new Dictionary<string?, TValue>(value.Count);
foreach (var (k, v) in value)
{
if (k != null)
if (k != null)
{
convertedDictionary[k.ToString()] = v;
}