##// END OF EJS Templates
code cleanup
cin -
r91:cdaaf4792c22 v2
parent child
Show More
@@ -141,7 +141,6
141 141 <Compile Include="TransientPromiseException.cs" />
142 142 <Compile Include="SyncContextPromise.cs" />
143 143 <Compile Include="ObjectPool.cs" />
144 <Compile Include="ObjectPoolWrapper.cs" />
145 144 </ItemGroup>
146 145 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
147 146 <ItemGroup />
@@ -23,11 +23,6 namespace Implab {
23 23 protected ObjectPool() : this(Environment.ProcessorCount+1) {
24 24 }
25 25
26 public ObjectPoolWrapper<T> AllocateAuto() {
27
28 return new ObjectPoolWrapper<T>(Allocate(), this);
29 }
30
31 26 public T Allocate() {
32 27 if (m_disposed)
33 28 throw new ObjectDisposedException(ToString());
1 NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now