aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-19 16:27:02 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-19 16:27:02 -0400
commiteb612bd303b1ff7adf44f38496448b6064c465fe (patch)
tree6e95bf2d63aa0ebb296c09c37ccb03bd1b9212aa /MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs
parent6c1bfe661bf2d0c2e988793bd760148d57014bb4 (diff)
fixed db disposals
Diffstat (limited to 'MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs')
-rw-r--r--MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs b/MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs
index 056e50a78..a6d505d19 100644
--- a/MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs
+++ b/MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs
@@ -1,6 +1,4 @@
-using System.Linq;
-using System.Threading;
-using MediaBrowser.Common.Events;
+using MediaBrowser.Common.Events;
using MediaBrowser.Common.Net;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Common.ScheduledTasks;
@@ -15,6 +13,8 @@ using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Tasks;
using MediaBrowser.Model.Updates;
using System;
+using System.Linq;
+using System.Threading;
namespace MediaBrowser.ServerApplication.EntryPoints
{