aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Pools/SharedPools.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Common/Pools/SharedPools.cs')
-rw-r--r--src/Ryujinx.Common/Pools/SharedPools.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Common/Pools/SharedPools.cs b/src/Ryujinx.Common/Pools/SharedPools.cs
index b4860b85..272a7418 100644
--- a/src/Ryujinx.Common/Pools/SharedPools.cs
+++ b/src/Ryujinx.Common/Pools/SharedPools.cs
@@ -5,7 +5,7 @@
private static class DefaultPool<T>
where T : class, new()
{
- public static readonly ObjectPool<T> Instance = new ObjectPool<T>(() => new T(), 20);
+ public static readonly ObjectPool<T> Instance = new(() => new T(), 20);
}
public static ObjectPool<T> Default<T>()