From 70bc03c79571f70c2a6281b99554638f76f461c9 Mon Sep 17 00:00:00 2001 From: Bond-009 Date: Sat, 1 Feb 2020 12:54:48 +0100 Subject: [PATCH] Apply suggestions from code review Co-Authored-By: dkanada --- Emby.Server.Implementations/Session/SessionManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index bb0836614e..f5bd51c4ae 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -35,12 +35,12 @@ namespace Emby.Server.Implementations.Session public class SessionManager : ISessionManager, IDisposable { /// - /// The _user data repository. + /// The user data repository. /// private readonly IUserDataManager _userDataManager; /// - /// The _logger. + /// The logger. /// private readonly ILogger _logger; @@ -57,7 +57,7 @@ namespace Emby.Server.Implementations.Session private readonly IDeviceManager _deviceManager; /// - /// The _active connections. + /// The active connections. /// private readonly ConcurrentDictionary _activeConnections = new ConcurrentDictionary(StringComparer.OrdinalIgnoreCase);