2
0
Эх сурвалжийг харах

Apply suggestions from code review

Co-Authored-By: dkanada <dkanada@users.noreply.github.com>
Bond-009 5 жил өмнө
parent
commit
70bc03c795

+ 3 - 3
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);