[Refactor] Remove redundant braces and apply brace style.

This commit is contained in:
2024-05-01 04:51:19 +01:00
parent 8e0e249b9f
commit b34179ebfe
30 changed files with 68 additions and 125 deletions

View File

@@ -1433,12 +1433,8 @@ public sealed class ImageConvertViewModel : ViewModelBase
}
if(trackFlags.Count > 0)
{
foreach(KeyValuePair<byte, byte> flags in trackFlags)
{
outputOptical.WriteSectorTag([flags.Value], flags.Key, SectorTagType.CdTrackFlags);
}
}
if(mcn != null) outputOptical.WriteMediaTag(Encoding.UTF8.GetBytes(mcn), MediaTagType.CD_MCN);
}