Skip to content

Commit

Permalink
some formatting done
Browse files Browse the repository at this point in the history
  • Loading branch information
Kumar Pallav committed Feb 2, 2021
1 parent 789e983 commit fe780e4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ public static T GetObject<T>(Dictionary<string, object> dict)

private static void SetProperty(Object R, string propertyName, object value)
{
try
{
R.SetPropertyValue(propertyName, value);
}
catch (Exception x)
{
try
{
R.SetPropertyValue(propertyName, value);
}
catch (Exception x)
{
Console.WriteLine("{0}", x);
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public string? Description
set => description = value;
}

[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
[JsonConverter(typeof(GidConverter))]
public virtual GId Id
{
Expand Down

0 comments on commit fe780e4

Please sign in to comment.