Updated pool factory javadocs

This commit is contained in:
nathan 2015-10-05 00:47:58 +02:00
parent e1786ca348
commit eefbe8ea6a
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class ObjectPoolFactory {
}
/**
* Creates a pool of the specified size
* Creates a pool of the specified size. The "Fast/Unsafe" object pool will always have a size rounded up to the nearest power of 2.
*/
public static
<T> ObjectPool<T> create(PoolableObject<T> poolableObject, int size) {