Pool.java back to the original

This commit is contained in:
ivowiblo
2012-04-18 00:27:00 -04:00
parent e8c27e0d15
commit ded776f859

View File

@@ -24,7 +24,7 @@ public abstract class Pool<T> {
} }
} }
public void returnResource(final Object resource) { public void returnResource(final T resource) {
try { try {
internalPool.returnObject(resource); internalPool.returnObject(resource);
} catch (Exception e) { } catch (Exception e) {