aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Notifications
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 20:25:32 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 20:25:32 +0100
commit26ca4b607b98b78b44a7300bcf9890360e598393 (patch)
tree68a3915185dd2ae3846c7641dce2a20daf74cc67 /MediaBrowser.Controller/Notifications
parent106d1d18ed5781043312194590aa37dc8a3072d0 (diff)
Visual Studio Reformat: MediaBrowser.Controller
Diffstat (limited to 'MediaBrowser.Controller/Notifications')
-rw-r--r--MediaBrowser.Controller/Notifications/INotificationManager.cs8
-rw-r--r--MediaBrowser.Controller/Notifications/INotificationService.cs4
-rw-r--r--MediaBrowser.Controller/Notifications/INotificationTypeFactory.cs4
-rw-r--r--MediaBrowser.Controller/Notifications/UserNotification.cs4
4 files changed, 10 insertions, 10 deletions
diff --git a/MediaBrowser.Controller/Notifications/INotificationManager.cs b/MediaBrowser.Controller/Notifications/INotificationManager.cs
index 161f0ffba2..23fa362397 100644
--- a/MediaBrowser.Controller/Notifications/INotificationManager.cs
+++ b/MediaBrowser.Controller/Notifications/INotificationManager.cs
@@ -1,9 +1,9 @@
-using MediaBrowser.Controller.Entities;
+using System.Collections.Generic;
+using System.Threading;
+using System.Threading.Tasks;
+using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Notifications;
-using System.Collections.Generic;
-using System.Threading.Tasks;
-using System.Threading;
namespace MediaBrowser.Controller.Notifications
{
diff --git a/MediaBrowser.Controller/Notifications/INotificationService.cs b/MediaBrowser.Controller/Notifications/INotificationService.cs
index b1e313b873..a9cf41de25 100644
--- a/MediaBrowser.Controller/Notifications/INotificationService.cs
+++ b/MediaBrowser.Controller/Notifications/INotificationService.cs
@@ -1,6 +1,6 @@
-using MediaBrowser.Controller.Entities;
-using System.Threading;
+using System.Threading;
using System.Threading.Tasks;
+using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Notifications
{
diff --git a/MediaBrowser.Controller/Notifications/INotificationTypeFactory.cs b/MediaBrowser.Controller/Notifications/INotificationTypeFactory.cs
index bf92aae2da..43b18101c5 100644
--- a/MediaBrowser.Controller/Notifications/INotificationTypeFactory.cs
+++ b/MediaBrowser.Controller/Notifications/INotificationTypeFactory.cs
@@ -1,5 +1,5 @@
-using MediaBrowser.Model.Notifications;
-using System.Collections.Generic;
+using System.Collections.Generic;
+using MediaBrowser.Model.Notifications;
namespace MediaBrowser.Controller.Notifications
{
diff --git a/MediaBrowser.Controller/Notifications/UserNotification.cs b/MediaBrowser.Controller/Notifications/UserNotification.cs
index d035a3995c..6f71fb79cc 100644
--- a/MediaBrowser.Controller/Notifications/UserNotification.cs
+++ b/MediaBrowser.Controller/Notifications/UserNotification.cs
@@ -1,6 +1,6 @@
-using MediaBrowser.Controller.Entities;
+using System;
+using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Notifications;
-using System;
namespace MediaBrowser.Controller.Notifications
{