Fixed notifications, episodestatus test

This commit is contained in:
kay.one 2011-06-18 10:18:25 -07:00
commit ed4976de90
2 changed files with 4 additions and 4 deletions

View file

@ -7,12 +7,12 @@ namespace NzbDrone.Core.Providers
{
public class NotificationProvider
{
private readonly Dictionary<Guid, BasicNotification> _basicNotifications =
private static readonly Dictionary<Guid, BasicNotification> _basicNotifications =
new Dictionary<Guid, BasicNotification>();
private readonly Object _lock = new object();
private static readonly Object _lock = new object();
private readonly Dictionary<Guid, ProgressNotification> _progressNotification =
private static readonly Dictionary<Guid, ProgressNotification> _progressNotification =
new Dictionary<Guid, ProgressNotification>();
public virtual List<BasicNotification> BasicNotifications