aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-02-02 00:07:46 +0900
committerdkanada <dkanada@users.noreply.github.com>2020-02-02 00:07:46 +0900
commit6341d986a95be928a85ecd81c08fefdc5c3ec3b6 (patch)
tree0a89d39ec434a8e9dc84b857d3c53fe3d46c1b2d /MediaBrowser.Controller
parentb3811a9498fe06b68693f4a269de902cdd7eb2a2 (diff)
fix a few warnings
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/Session/SessionInfo.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs
index acda6a416..964fc9b19 100644
--- a/MediaBrowser.Controller/Session/SessionInfo.cs
+++ b/MediaBrowser.Controller/Session/SessionInfo.cs
@@ -1,6 +1,5 @@
using System;
using System.Linq;
-using System.Text.Json.Serialization;
using System.Threading;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Dto;
@@ -123,7 +122,6 @@ namespace MediaBrowser.Controller.Session
/// Gets or sets the session controller.
/// </summary>
/// <value>The session controller.</value>
- [JsonIgnore]
public ISessionController[] SessionControllers { get; set; }
/// <summary>
@@ -245,11 +243,6 @@ namespace MediaBrowser.Controller.Session
SessionControllers = controllers.ToArray();
}
- public bool ContainsUser(string userId)
- {
- return ContainsUser(new Guid(userId));
- }
-
public bool ContainsUser(Guid userId)
{
if (UserId.Equals(userId))