Code cleanup.

This commit is contained in:
2020-07-20 04:34:16 +01:00
parent e8fe5cc8d2
commit 9cfef45856
345 changed files with 9384 additions and 3725 deletions

View File

@@ -557,8 +557,9 @@ namespace Aaru.Gui.ViewModels.Windows
foreach(ChecksumType chk in trackChecksum.End())
TrackChecksums.Add(new ChecksumModel
{
Track = currentTrack.TrackSequence.ToString(), Algorithm = chk.type.ToString(),
Hash = chk.Value
Track = currentTrack.TrackSequence.ToString(),
Algorithm = chk.type.ToString(),
Hash = chk.Value
});
});
@@ -588,7 +589,8 @@ namespace Aaru.Gui.ViewModels.Windows
foreach(ChecksumType chk in mediaChecksum.End())
MediaChecksums.Add(new ChecksumModel
{
Algorithm = chk.type.ToString(), Hash = chk.Value
Algorithm = chk.type.ToString(),
Hash = chk.Value
});
});
}
@@ -664,7 +666,8 @@ namespace Aaru.Gui.ViewModels.Windows
foreach(ChecksumType chk in mediaChecksum.End())
MediaChecksums.Add(new ChecksumModel
{
Algorithm = chk.type.ToString(), Hash = chk.Value
Algorithm = chk.type.ToString(),
Hash = chk.Value
});
});
}