LazyList is now initilized using an empty list instead of null.

This commit is contained in:
kay.one 2013-03-30 14:29:29 -07:00
commit 58a05fcef8
2 changed files with 14 additions and 38 deletions

View file

@ -6,6 +6,7 @@ namespace NzbDrone.Core.Datastore
public class LazyList<T> : LazyLoaded<List<T>>
{
public LazyList()
: this(new List<T>())
{
}