Skip to content

Commit c16709e

Browse files
committed
clean up
1 parent 2afa00b commit c16709e

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/DefaultPoolPolicy.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ public DefaultPoolPolicy(Action<T> reinitializeObject=null, int maxPoolSize = 10
2525
MaximumPoolSize = maxPoolSize > 0 ? maxPoolSize : Environment.ProcessorCount * 2;
2626
}
2727

28-
2928
public T Create(IPool<T> pool)
3029
{
30+
#pragma warning disable HAA0502 // Explicit new reference type allocation
3131
return new T();
32+
#pragma warning restore HAA0502 // Explicit new reference type allocation
3233
}
3334

3435
public void Reinitialize(T obj)

src/Pool.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public override T Get()
105105
if (retVal != null && Interlocked.CompareExchange(ref pool[i].Element, null, retVal) == retVal)
106106
{
107107
Interlocked.Decrement(ref _poolInstancesCount);
108-
PoolPolicy.Reinitialize(retVal);
108+
PoolPolicy.Reinitialize(retVal);
109109

110110
return retVal;
111111
}
@@ -157,9 +157,9 @@ public override bool Return(T value)
157157
//check if pool is full
158158
if (!IsPoolFull())
159159
{
160-
Add(value);
160+
Add(value);
161161

162-
return true;
162+
return true;
163163
}
164164
else
165165
{
@@ -206,12 +206,12 @@ private bool Contains(T value)
206206
{
207207
return false;
208208
}
209-
209+
210210
var pool = _pool;
211211
for (var i = 0; i < _poolSize; ++i)
212212
{
213213
var item = pool[i].Element;
214-
if(item!=null && value.Equals(item))
214+
if (item != null && value.Equals(item))
215215
{
216216
return true;
217217
}

0 commit comments

Comments
 (0)