mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 18:53:27 +01:00
ReSharper format: conform inline 'out' parameters.
This commit is contained in:
@@ -71,8 +71,7 @@ namespace Emby.Naming.Video
|
||||
|
||||
if (match.Success && match.Groups.Count == 4)
|
||||
{
|
||||
int year;
|
||||
if (match.Groups[1].Success && match.Groups[2].Success && int.TryParse(match.Groups[2].Value, NumberStyles.Integer, CultureInfo.InvariantCulture, out year))
|
||||
if (match.Groups[1].Success && match.Groups[2].Success && int.TryParse(match.Groups[2].Value, NumberStyles.Integer, CultureInfo.InvariantCulture, out var year))
|
||||
{
|
||||
name = match.Groups[1].Value;
|
||||
result.Year = year;
|
||||
|
||||
Reference in New Issue
Block a user