mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[Refactor] Use static lambdas in LINQ queries for improved performance
This commit is contained in:
@@ -110,7 +110,7 @@ public sealed class DEC : IPartition
|
||||
Sequence = counter,
|
||||
Scheme = Name
|
||||
})
|
||||
.Where(part => part.Size > 0))
|
||||
.Where(static part => part.Size > 0))
|
||||
{
|
||||
partitions.Add(part);
|
||||
counter++;
|
||||
|
||||
Reference in New Issue
Block a user