diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-02-01 12:54:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-01 12:54:48 +0100 |
| commit | 70bc03c79571f70c2a6281b99554638f76f461c9 (patch) | |
| tree | 270b0e462a5b0d1d4a80e237cd0870597f43dde4 /Emby.Server.Implementations/Session/SessionManager.cs | |
| parent | c601def4847cb0ada323a9da8d152c8c8d7b834b (diff) | |
Apply suggestions from code review
Co-Authored-By: dkanada <dkanada@users.noreply.github.com>
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index bb0836614..f5bd51c4a 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 { /// <summary> - /// The _user data repository. + /// The user data repository. /// </summary> private readonly IUserDataManager _userDataManager; /// <summary> - /// The _logger. + /// The logger. /// </summary> private readonly ILogger _logger; @@ -57,7 +57,7 @@ namespace Emby.Server.Implementations.Session private readonly IDeviceManager _deviceManager; /// <summary> - /// The _active connections. + /// The active connections. /// </summary> private readonly ConcurrentDictionary<string, SessionInfo> _activeConnections = new ConcurrentDictionary<string, SessionInfo>(StringComparer.OrdinalIgnoreCase); |
