We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 269e572 commit 7b06dceCopy full SHA for 7b06dce
Microsoft.SystemForCrossDomainIdentityManagement/Schemas/TrustedJsonFactory.cs
@@ -12,8 +12,7 @@ public class TrustedJsonFactory : JsonFactory
12
public override Dictionary<string, object> Create(string json)
13
{
14
Dictionary<string, object> result =
15
- (Dictionary<string, object>)JsonConvert.DeserializeObject(
16
- json);
+ JsonConvert.DeserializeObject<Dictionary<string, object>>(json);
17
return result;
18
}
19
0 commit comments