Skip to content

Commit

Permalink
Remove null list
Browse files Browse the repository at this point in the history
  • Loading branch information
premun committed May 30, 2021
1 parent 95bca09 commit 173fe44
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions YamlDotNet.Test/Serialization/EmitDefaultValuesTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ private class Model
[DefaultValue(2)] public int? ANullableNonZeroNonDefaultInteger => 1;

// Enumerables
public IList<int> ANullList => null;

public int[] AnEmptyArray => new int[0];
public IList<int> AnEmptyList => new List<int>();
public Dictionary<string, string> AnEmptyDictionary => new Dictionary<string, string>();
Expand Down

0 comments on commit 173fe44

Please sign in to comment.