This is an automated email from the ASF dual-hosted git repository. psteitz pushed a commit to branch POOL_2_X in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/POOL_2_X by this push: new fb3d084c Remove unused @param tags. fb3d084c is described below commit fb3d084c3104265d08a96ea4d243db5e22670681 Author: psteitz <phil.ste...@gmail.com> AuthorDate: Fri Jul 14 21:18:05 2023 -0700 Remove unused @param tags. --- src/main/java/org/apache/commons/pool2/PoolUtils.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/main/java/org/apache/commons/pool2/PoolUtils.java b/src/main/java/org/apache/commons/pool2/PoolUtils.java index c5a520e7..4c713f85 100644 --- a/src/main/java/org/apache/commons/pool2/PoolUtils.java +++ b/src/main/java/org/apache/commons/pool2/PoolUtils.java @@ -110,7 +110,6 @@ public final class PoolUtils { * * @param <K> object pool key type * @param <V> object pool value type - * @param <E> exception thrown by this pool */ private static class ErodingKeyedObjectPool<K, V> implements KeyedObjectPool<K, V> { @@ -471,7 +470,6 @@ public final class PoolUtils { * * @param <K> object pool key type * @param <V> object pool value type - * @param <E> exception thrown by this pool */ private static final class ErodingPerKeyKeyedObjectPool<K, V> extends ErodingKeyedObjectPool<K, V> { @@ -522,7 +520,6 @@ public final class PoolUtils { * * @param <K> object pool key type * @param <V> object pool value type - * @param <E> exception thrown by this pool */ private static final class KeyedObjectPoolMinIdleTimerTask<K, V> extends TimerTask { @@ -681,7 +678,6 @@ public final class PoolUtils { * * @param <K> object pool key type * @param <V> object pool value type - * @param <E> exception thrown by this pool */ static final class SynchronizedKeyedObjectPool<K, V> implements KeyedObjectPool<K, V> { @@ -910,7 +906,6 @@ public final class PoolUtils { * * @param <K> pooled object factory key type * @param <V> pooled object factory value type - * @param <E> pooled object factory exception type */ private static final class SynchronizedKeyedPooledObjectFactory<K, V> implements KeyedPooledObjectFactory<K, V> { @@ -1200,7 +1195,6 @@ public final class PoolUtils { * </p> * * @param <T> pooled object factory type - * @param <E> exception type */ private static final class SynchronizedPooledObjectFactory<T> implements PooledObjectFactory<T> { @@ -1755,7 +1749,6 @@ public final class PoolUtils { * synchronized KeyedPooledObjectFactory. * @param <K> the type of the pool key * @param <V> the type of pool entries - * @param <E> the type of pool exceptions * @return a synchronized view of the specified KeyedPooledObjectFactory. */ public static <K, V> KeyedPooledObjectFactory<K, V> synchronizedKeyedPooledFactory( @@ -1809,7 +1802,6 @@ public final class PoolUtils { * </p> * * @param <T> the type of objects in the pool - * @param <E> the type of exceptions thrown by the pool * @param pool * the ObjectPool to be "wrapped" in a synchronized ObjectPool. * @throws IllegalArgumentException @@ -1843,7 +1835,6 @@ public final class PoolUtils { * the PooledObjectFactory to be "wrapped" in a synchronized * PooledObjectFactory. * @param <T> the type of objects in the pool - * @param <E> the type of exceptions thrown by the pool * @return a synchronized view of the specified PooledObjectFactory. */ public static <T> PooledObjectFactory<T> synchronizedPooledFactory(final PooledObjectFactory<T> factory) {