mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-06-01 09:59:14 +00:00
misc: chore: Use collection expressions in Memory project
This commit is contained in:
@@ -173,7 +173,7 @@ namespace Ryujinx.Memory.Range
|
||||
private List<T> GetList()
|
||||
{
|
||||
List<RangeNode<ulong, T>> items = _items.AsList();
|
||||
List<T> result = new();
|
||||
List<T> result = [];
|
||||
|
||||
foreach (RangeNode<ulong, T> item in items)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user