From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- Ryujinx.Common/Pools/SharedPools.cs | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 Ryujinx.Common/Pools/SharedPools.cs (limited to 'Ryujinx.Common/Pools/SharedPools.cs') diff --git a/Ryujinx.Common/Pools/SharedPools.cs b/Ryujinx.Common/Pools/SharedPools.cs deleted file mode 100644 index b4860b85..00000000 --- a/Ryujinx.Common/Pools/SharedPools.cs +++ /dev/null @@ -1,17 +0,0 @@ -namespace Ryujinx.Common -{ - public static class SharedPools - { - private static class DefaultPool - where T : class, new() - { - public static readonly ObjectPool Instance = new ObjectPool(() => new T(), 20); - } - - public static ObjectPool Default() - where T : class, new() - { - return DefaultPool.Instance; - } - } -} -- cgit v1.2.3