mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
LazyList is now initilized using an empty list instead of null.
This commit is contained in:
parent
150b1902e9
commit
58a05fcef8
2 changed files with 14 additions and 38 deletions
|
@ -6,6 +6,7 @@ namespace NzbDrone.Core.Datastore
|
|||
public class LazyList<T> : LazyLoaded<List<T>>
|
||||
{
|
||||
public LazyList()
|
||||
: this(new List<T>())
|
||||
{
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue