dotnet format

This commit is contained in:
Malte Rosenbjerg 2024-12-04 21:51:43 +02:00
parent 045068c70e
commit 5d654af5f8
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ public class CropArgument : IArgument
{
public readonly Size? Size;
public readonly int Top;
public readonly int Left;
public readonly int Left;
public CropArgument(Size? size, int top, int left)
{

View file

@ -31,7 +31,7 @@ private MediaFormat ParseFormat(Format analysisFormat)
}
private string GetValue(string tagName, Dictionary<string, string>? tags, string defaultValue) =>
tags == null ? defaultValue : tags.TryGetValue(tagName, out var value) ? value : defaultValue;
tags == null ? defaultValue : tags.TryGetValue(tagName, out var value) ? value : defaultValue;
private ChapterData ParseChapter(Chapter analysisChapter)
{