misc: chore: Use collection expressions in Horizon project

This commit is contained in:
Evan Husted 2025-01-26 15:43:27 -06:00
parent 70b767ef60
commit 9f3eac7f26
14 changed files with 106 additions and 105 deletions

View file

@ -31,7 +31,7 @@ namespace Ryujinx.Horizon
public HeapAllocator()
{
_freeRanges = new List<Range>();
_freeRanges = [];
_currentHeapSize = 0;
}