[DatFile] Move output to the proper place

This commit is contained in:
Matt Nadareski
2017-03-01 19:55:42 -08:00
parent aee20bfccf
commit 7a26f5a6fe
6 changed files with 34 additions and 43 deletions

View File

@@ -145,7 +145,7 @@ namespace SabreTools.Helper.Dats
}
// Now that we have a list of depots, we want to sort the input DAT by SHA-1
BucketBy(SortedBy.SHA1, false /* mergeroms */, logger, output: false);
BucketBy(SortedBy.SHA1, false /* mergeroms */, logger);
// Then we want to loop through each of the hashes and see if we can rebuild
List<string> hashes = Keys.ToList();
@@ -830,7 +830,7 @@ namespace SabreTools.Helper.Dats
}
// Now that we have a list of depots, we want to sort the input DAT by SHA-1
BucketBy(SortedBy.SHA1, false /* mergeroms */, logger, output: false);
BucketBy(SortedBy.SHA1, false /* mergeroms */, logger);
// Then we want to loop through each of the hashes and see if we can rebuild
List<string> hashes = Keys.ToList();
@@ -941,7 +941,7 @@ namespace SabreTools.Helper.Dats
if (hashOnly)
{
// First we need to sort by hash to get duplicates
BucketBy(SortedBy.SHA1, false /* mergeroms */, logger, output: false);
BucketBy(SortedBy.SHA1, false /* mergeroms */, logger);
// Then follow the same tactics as before
foreach (string key in Keys)