This is an automated email from the ASF dual-hosted git repository. ggregory 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 73f3d868 Use Javadoc instead of HTML tag 73f3d868 is described below commit 73f3d868a876cca36088af200bdbef94ad41c789 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Tue Aug 5 15:36:51 2025 -0400 Use Javadoc instead of HTML tag --- src/main/java/org/apache/commons/pool2/package-info.java | 8 ++++---- src/main/java/org/apache/commons/pool2/proxy/package-info.java | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/commons/pool2/package-info.java b/src/main/java/org/apache/commons/pool2/package-info.java index 8f73718e..096e395d 100644 --- a/src/main/java/org/apache/commons/pool2/package-info.java +++ b/src/main/java/org/apache/commons/pool2/package-info.java @@ -18,15 +18,15 @@ /** * Object pooling API. * <p> - * The <code>org.apache.commons.pool2</code> package defines a simple interface for a pool of object instances, and a handful of base classes that may be useful + * The {@code org.apache.commons.pool2} package defines a simple interface for a pool of object instances, and a handful of base classes that may be useful * when creating pool implementations. * </p> * <p> - * The <code>pool</code> package itself doesn't define a specific object pooling implementation, but rather a contract that implementations may support in order + * The {@code pool} package itself doesn't define a specific object pooling implementation, but rather a contract that implementations may support in order * to be fully interchangeable. * </p> * <p> - * The <code>pool</code> package separates the way in which instances are pooled from the way in which they are created, resulting in a pair of interfaces: + * The {@code pool} package separates the way in which instances are pooled from the way in which they are created, resulting in a pair of interfaces: * </p> * <dl> * <dt>{@link org.apache.commons.pool2.ObjectPool ObjectPool}</dt> @@ -36,7 +36,7 @@ * needed.</dd> * </dl> * <p> - * The <code>pool</code> package also provides a keyed pool interface, which pools instances of multiple types, accessed according to an arbitrary key. See + * The {@code pool} package also provides a keyed pool interface, which pools instances of multiple types, accessed according to an arbitrary key. See * {@link org.apache.commons.pool2.KeyedObjectPool KeyedObjectPool} and {@link org.apache.commons.pool2.KeyedPooledObjectFactory KeyedPooledObjectFactory}. * </p> */ diff --git a/src/main/java/org/apache/commons/pool2/proxy/package-info.java b/src/main/java/org/apache/commons/pool2/proxy/package-info.java index 68a4aa73..625c24f7 100644 --- a/src/main/java/org/apache/commons/pool2/proxy/package-info.java +++ b/src/main/java/org/apache/commons/pool2/proxy/package-info.java @@ -18,14 +18,14 @@ /** * Object pooling proxy implementation. * <p> - * The <code>org.apache.commons.pool2.proxy</code> package defines a + * The {@code org.apache.commons.pool2.proxy} package defines a * object pool that wraps all objects returned to clients. This allows it * to disable those proxies when the objects are returned thereby enabling * the continued use of those objects by clients to be detected. * </p> * <p> - * Support is provided for <code>java.lang.reflect.Proxy</code> and for - * <code>net.sf.cglib.proxy</code> based proxies. The latter, requires the + * Support is provided for {@code java.lang.reflect.Proxy} and for + * {@code net.sf.cglib.proxy} based proxies. The latter, requires the * additional of the optional Code Generation Library (GCLib). * </p> * <p>