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

@ -33,7 +33,7 @@ namespace Ryujinx.Horizon
public IEnumerable<ServiceEntry> GetServices(HorizonOptions options)
{
List<ServiceEntry> entries = new();
List<ServiceEntry> entries = [];
void RegisterService<T>() where T : IService
{