aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Connect/IConnectManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-18 14:15:26 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-18 14:15:26 -0500
commitbc6e47c30a456a2cb461ced0598675acfc5a6f62 (patch)
tree1ad6c4cd37b2788ea225595265decea4393fb260 /MediaBrowser.Controller/Connect/IConnectManager.cs
parenteea19c3adcdc47e894d8e557cfc5db42032302b2 (diff)
removed dead code
Diffstat (limited to 'MediaBrowser.Controller/Connect/IConnectManager.cs')
-rw-r--r--MediaBrowser.Controller/Connect/IConnectManager.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/MediaBrowser.Controller/Connect/IConnectManager.cs b/MediaBrowser.Controller/Connect/IConnectManager.cs
index 1f7652221..e004eaccf 100644
--- a/MediaBrowser.Controller/Connect/IConnectManager.cs
+++ b/MediaBrowser.Controller/Connect/IConnectManager.cs
@@ -76,25 +76,5 @@ namespace MediaBrowser.Controller.Connect
/// <param name="token">The token.</param>
/// <returns><c>true</c> if [is authorization token valid] [the specified token]; otherwise, <c>false</c>.</returns>
bool IsAuthorizationTokenValid(string token);
-
- /// <summary>
- /// Gets the connect supporter summary.
- /// </summary>
- /// <returns>Task&lt;ConnectSupporterSummary&gt;.</returns>
- Task<ConnectSupporterSummary> GetConnectSupporterSummary();
-
- /// <summary>
- /// Removes the connect supporter.
- /// </summary>
- /// <param name="id">The identifier.</param>
- /// <returns>Task.</returns>
- Task RemoveConnectSupporter(string id);
-
- /// <summary>
- /// Adds the connect supporter.
- /// </summary>
- /// <param name="id">The identifier.</param>
- /// <returns>Task.</returns>
- Task AddConnectSupporter(string id);
}
}