This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/master by this push: new 8a4f58cc Javadoc: Use the semantic HTML tag 'string' instead of the style tag 'b' 8a4f58cc is described below commit 8a4f58cc4435c3bd5b8e6524f11a0033391ae714 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Nov 28 11:31:39 2024 -0500 Javadoc: Use the semantic HTML tag 'string' instead of the style tag 'b' --- src/main/java/org/apache/commons/pool3/PoolUtils.java | 12 ++++++------ .../apache/commons/pool3/impl/GenericKeyedObjectPool.java | 4 ++-- .../pool3/impl/TestSynchronizedPooledObjectFactory.java | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/apache/commons/pool3/PoolUtils.java b/src/main/java/org/apache/commons/pool3/PoolUtils.java index c43f7bf7..b5b18e3c 100644 --- a/src/main/java/org/apache/commons/pool3/PoolUtils.java +++ b/src/main/java/org/apache/commons/pool3/PoolUtils.java @@ -673,7 +673,7 @@ public final class PoolUtils { * A synchronized (thread-safe) KeyedObjectPool backed by the specified * KeyedObjectPool. * <p> - * <b>Note:</b> This should not be used on pool implementations that already + * <strong>Note:</strong> This should not be used on pool implementations that already * provide proper synchronization such as the pools provided in the Commons * Pool library. Wrapping a pool that {@link #wait() waits} for poolable * objects to be returned before allowing another one to be borrowed with @@ -905,7 +905,7 @@ public final class PoolUtils { * KeyedPooledObjectFactory and synchronizes access to the wrapped factory * methods. * <p> - * <b>Note:</b> This should not be used on pool implementations that already + * <strong>Note:</strong> This should not be used on pool implementations that already * provide proper synchronization such as the pools provided in the Commons * Pool library. * </p> @@ -1021,7 +1021,7 @@ public final class PoolUtils { * A synchronized (thread-safe) ObjectPool backed by the specified * ObjectPool. * <p> - * <b>Note:</b> This should not be used on pool implementations that already + * <strong>Note:</strong> This should not be used on pool implementations that already * provide proper synchronization such as the pools provided in the Commons * Pool library. Wrapping a pool that {@link #wait() waits} for poolable * objects to be returned before allowing another one to be borrowed with @@ -1196,7 +1196,7 @@ public final class PoolUtils { * PooledObjectFactory and synchronizes access to the wrapped factory * methods. * <p> - * <b>Note:</b> This should not be used on pool implementations that already + * <strong>Note:</strong> This should not be used on pool implementations that already * provide proper synchronization such as the pools provided in the Commons * Pool library. * </p> @@ -1676,7 +1676,7 @@ public final class PoolUtils { * Returns a synchronized (thread-safe) KeyedObjectPool backed by the * specified KeyedObjectPool. * <p> - * <b>Note:</b> This should not be used on pool implementations that already + * <strong>Note:</strong> This should not be used on pool implementations that already * provide proper synchronization such as the pools provided in the Commons * Pool library. Wrapping a pool that {@link #wait() waits} for poolable * objects to be returned before allowing another one to be borrowed with @@ -1709,7 +1709,7 @@ public final class PoolUtils { * Returns a synchronized (thread-safe) ObjectPool backed by the specified * ObjectPool. * <p> - * <b>Note:</b> This should not be used on pool implementations that already + * <strong>Note:</strong> This should not be used on pool implementations that already * provide proper synchronization such as the pools provided in the Commons * Pool library. Wrapping a pool that {@link #wait() waits} for poolable * objects to be returned before allowing another one to be borrowed with diff --git a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPool.java b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPool.java index f556af06..48b518f1 100644 --- a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPool.java +++ b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPool.java @@ -209,7 +209,7 @@ public class GenericKeyedObjectPool<K, T, E extends Exception> extends BaseGener private final boolean fairness; /* - * My hash of sub-pools (ObjectQueue). The list of keys <b>must</b> be kept + * My hash of sub-pools (ObjectQueue). The list of keys <strong>must</strong> be kept * in step with {@link #poolKeyList} using {@link #keyLock} to ensure any * changes to the list of current keys is made in a thread-safe manner. */ @@ -218,7 +218,7 @@ public class GenericKeyedObjectPool<K, T, E extends Exception> extends BaseGener /* * List of pool keys - used to control eviction order. The list of keys - * <b>must</b> be kept in step with {@link #poolMap} using {@link #keyLock} + * <strong>must</strong> be kept in step with {@link #poolMap} using {@link #keyLock} * to ensure any changes to the list of current keys is made in a * thread-safe manner. */ diff --git a/src/test/java/org/apache/commons/pool3/impl/TestSynchronizedPooledObjectFactory.java b/src/test/java/org/apache/commons/pool3/impl/TestSynchronizedPooledObjectFactory.java index e104e221..0d045fde 100644 --- a/src/test/java/org/apache/commons/pool3/impl/TestSynchronizedPooledObjectFactory.java +++ b/src/test/java/org/apache/commons/pool3/impl/TestSynchronizedPooledObjectFactory.java @@ -29,7 +29,7 @@ import org.apache.commons.pool3.PooledObjectFactory; * A fully synchronized PooledObjectFactory that wraps a PooledObjectFactory and * synchronizes access to the wrapped factory methods. * <p> - * <b>Note:</b> This should not be used on pool implementations that already + * <strong>Note:</strong> This should not be used on pool implementations that already * provide proper synchronization such as the pools provided in the Commons Pool * library. * </p>