[Refactor] Use static lambdas in LINQ queries for improved performance

This commit is contained in:
2025-11-24 03:00:06 +00:00
parent 5fe7f574d6
commit 04c45e69fa
126 changed files with 971 additions and 929 deletions

View File

@@ -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++;