From d4d10f6e433cc472c5aafe6af53a101bba36bf79 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 12 May 2014 18:30:32 -0400 Subject: add new subtitle preferences --- MediaBrowser.Controller/Session/ISessionController.cs | 6 ------ MediaBrowser.Controller/Session/SessionInfo.cs | 17 ----------------- 2 files changed, 23 deletions(-) (limited to 'MediaBrowser.Controller/Session') diff --git a/MediaBrowser.Controller/Session/ISessionController.cs b/MediaBrowser.Controller/Session/ISessionController.cs index 9c818284d..1b50bad47 100644 --- a/MediaBrowser.Controller/Session/ISessionController.cs +++ b/MediaBrowser.Controller/Session/ISessionController.cs @@ -7,12 +7,6 @@ namespace MediaBrowser.Controller.Session { public interface ISessionController { - /// - /// Gets a value indicating whether [supports media remote control]. - /// - /// true if [supports media remote control]; otherwise, false. - bool SupportsMediaRemoteControl { get; } - /// /// Gets a value indicating whether this instance is session active. /// diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs index 54d844c0a..9f5b687cc 100644 --- a/MediaBrowser.Controller/Session/SessionInfo.cs +++ b/MediaBrowser.Controller/Session/SessionInfo.cs @@ -139,23 +139,6 @@ namespace MediaBrowser.Controller.Session } } - /// - /// Gets a value indicating whether [supports remote control]. - /// - /// true if [supports remote control]; otherwise, false. - public bool SupportsRemoteControl - { - get - { - if (SessionController != null) - { - return SessionController.SupportsMediaRemoteControl; - } - - return false; - } - } - public bool ContainsUser(Guid userId) { return (UserId ?? Guid.Empty) == UserId || AdditionalUsers.Any(i => userId == new Guid(i.UserId)); -- cgit v1.2.3