aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/Native/PowerManagement.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.ServerApplication/Native/PowerManagement.cs')
-rw-r--r--MediaBrowser.ServerApplication/Native/PowerManagement.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/MediaBrowser.ServerApplication/Native/PowerManagement.cs b/MediaBrowser.ServerApplication/Native/PowerManagement.cs
deleted file mode 100644
index 0bd3db1da..000000000
--- a/MediaBrowser.ServerApplication/Native/PowerManagement.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using MediaBrowser.Model.System;
-
-namespace MediaBrowser.ServerApplication.Native
-{
- public class PowerManagement : IPowerManagement
- {
- public void PreventSystemStandby()
- {
- MainStartup.Invoke(Standby.PreventSleep);
- }
-
- public void AllowSystemStandby()
- {
- MainStartup.Invoke(Standby.AllowSleep);
- }
- }
-}