Skip to content

Commit

Permalink
Javadoc: Use the semantic HTML tag 'string' instead of the style tag 'b'
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 28, 2024
1 parent af6647c commit 8a4f58c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions src/main/java/org/apache/commons/pool3/PoolUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ public String toString() {
* 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
Expand Down Expand Up @@ -905,7 +905,7 @@ public String toString() {
* 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>
Expand Down Expand Up @@ -1021,7 +1021,7 @@ public boolean validateObject(final K key, final PooledObject<V> p) {
* 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
Expand Down Expand Up @@ -1196,7 +1196,7 @@ public String toString() {
* 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>
Expand Down Expand Up @@ -1676,7 +1676,7 @@ public static <K, V, E extends Exception> KeyedPooledObjectFactory<K, V, E> sync
* 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
Expand Down Expand Up @@ -1709,7 +1709,7 @@ public static <K, V, E extends Exception> KeyedObjectPool<K, V, E> synchronizedP
* 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public String toString() {
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.
*/
Expand All @@ -218,7 +218,7 @@ public String toString() {

/*
* 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.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* 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>
Expand Down

0 comments on commit 8a4f58c

Please sign in to comment.