mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 17:44:43 +01:00
ReSharper format: conform inline 'out' parameters.
This commit is contained in:
@@ -265,8 +265,7 @@ namespace Emby.Server.Implementations.Session
|
||||
{
|
||||
var key = GetSessionKey(session.Client, session.DeviceId);
|
||||
|
||||
SessionInfo removed;
|
||||
_activeConnections.TryRemove(key, out removed);
|
||||
_activeConnections.TryRemove(key, out var removed);
|
||||
|
||||
OnSessionEnded(session);
|
||||
}
|
||||
@@ -281,8 +280,7 @@ namespace Emby.Server.Implementations.Session
|
||||
{
|
||||
var key = GetSessionKey(session.Client, session.DeviceId);
|
||||
|
||||
SessionInfo removed;
|
||||
_activeConnections.TryRemove(key, out removed);
|
||||
_activeConnections.TryRemove(key, out var removed);
|
||||
|
||||
OnSessionEnded(session);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user