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-jcs.git
The following commit(s) were added to refs/heads/master by this push:
new 31ccacf1 Javadoc: Fix unsupported tag on Java 11
31ccacf1 is described below
commit 31ccacf1f0357d11bb628d234eb9df9967fb1d14
Author: Gary Gregory <[email protected]>
AuthorDate: Sun May 14 10:57:13 2023 -0400
Javadoc: Fix unsupported tag on Java 11
---
.../org/apache/commons/jcs/yajcache/lang/ref/KeyedSoftReference.java | 2 +-
.../org/apache/commons/jcs/yajcache/lang/ref/KeyedWeakReference.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/ref/KeyedSoftReference.java
b/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/ref/KeyedSoftReference.java
index 4ae86cd8..eb6284ee 100644
---
a/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/ref/KeyedSoftReference.java
+++
b/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/ref/KeyedSoftReference.java
@@ -54,7 +54,7 @@ public class KeyedSoftReference<K,T> extends SoftReference<T>
* @param key the embedded key of the new soft reference
* @param referent object the new soft reference will refer to
* @param q the queue with which the reference is to be registered,
- * or <tt>null</tt> if registration is not required
+ * or {@code null} if registration is not required
*/
public KeyedSoftReference(@NonNullable @Immutable K key, T referent,
ReferenceQueue<? super T> q)
diff --git
a/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/ref/KeyedWeakReference.java
b/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/ref/KeyedWeakReference.java
index 406f01f1..279fcc77 100644
---
a/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/ref/KeyedWeakReference.java
+++
b/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/ref/KeyedWeakReference.java
@@ -52,7 +52,7 @@ public class KeyedWeakReference<K,T> extends WeakReference<T>
* @param key the embedded key of the new weak reference
* @param referent object the new weak reference will refer to
* @param q the queue with which the reference is to be registered,
- * or <tt>null</tt> if registration is not required
+ * or {@code null} if registration is not required
*/
public KeyedWeakReference(@NonNullable @Immutable K key, T referent,
ReferenceQueue<? super T> q)