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 db2f288c Use Javadoc instead of HTML tag
db2f288c is described below
commit db2f288cee39a611d47a1b04d73d10cf61b61f20
Author: Gary D. Gregory <[email protected]>
AuthorDate: Tue Aug 5 15:37:29 2025 -0400
Use Javadoc instead of HTML tag
---
src/main/java/org/apache/commons/pool3/package-info.java | 8 ++++----
src/main/java/org/apache/commons/pool3/proxy/package-info.java | 6 +++---
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/main/java/org/apache/commons/pool3/package-info.java
b/src/main/java/org/apache/commons/pool3/package-info.java
index 6223de65..98f209f0 100644
--- a/src/main/java/org/apache/commons/pool3/package-info.java
+++ b/src/main/java/org/apache/commons/pool3/package-info.java
@@ -18,15 +18,15 @@
/**
* Object pooling API.
* <p>
- * The <code>org.apache.commons.pool3</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.pool3} 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.pool3.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.pool3.KeyedObjectPool KeyedObjectPool} and {@link
org.apache.commons.pool3.KeyedPooledObjectFactory KeyedPooledObjectFactory}.
* </p>
*/
diff --git a/src/main/java/org/apache/commons/pool3/proxy/package-info.java
b/src/main/java/org/apache/commons/pool3/proxy/package-info.java
index 64f335e6..5662bcc0 100644
--- a/src/main/java/org/apache/commons/pool3/proxy/package-info.java
+++ b/src/main/java/org/apache/commons/pool3/proxy/package-info.java
@@ -18,14 +18,14 @@
/**
* Object pooling proxy implementation.
* <p>
- * The <code>org.apache.commons.pool3.proxy</code> package defines a
+ * The {@code org.apache.commons.pool3.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>