mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Reduce Linq usage across entire project
This commit is contained in:
@@ -65,7 +65,10 @@ structure according to the original DAT master directory tree structure.";
|
||||
outputFolder.Ensure(create: true);
|
||||
|
||||
// Get all online depots
|
||||
List<string> onlineDepots = _depots!.Where(d => d.Value.Item2).Select(d => d.Key).ToList();
|
||||
List<string> onlineDepots = _depots
|
||||
.Where(d => d.Value.Item2)
|
||||
.Select(d => d.Key)
|
||||
.ToList();
|
||||
|
||||
// Now scan all of those depots and rebuild
|
||||
Rebuilder.RebuildDepot(
|
||||
|
||||
Reference in New Issue
Block a user