aboutsummaryrefslogtreecommitdiffstats
path: root/weaver
diff options
context:
space:
mode:
authorJerry James <loganjerry@gmail.com>2020-09-14 08:28:28 -0600
committerJerry James <loganjerry@gmail.com>2020-09-14 08:28:28 -0600
commit3255a3c562ce8dccd4abaf2f30bc04d4d7085fe2 (patch)
tree1746d83f6c9802e59d38276b74663a33606d159c /weaver
parentde14ca22d72be35e59ce370ef0edf8626db6cd82 (diff)
downloadaspectj-3255a3c562ce8dccd4abaf2f30bc04d4d7085fe2.tar.gz
aspectj-3255a3c562ce8dccd4abaf2f30bc04d4d7085fe2.zip
Fix javadoc references to nonexistent fields, classes, or packages
Diffstat (limited to 'weaver')
-rw-r--r--weaver/src/main/java/org/aspectj/weaver/tools/cache/AsynchronousFileCacheBacking.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/weaver/src/main/java/org/aspectj/weaver/tools/cache/AsynchronousFileCacheBacking.java b/weaver/src/main/java/org/aspectj/weaver/tools/cache/AsynchronousFileCacheBacking.java
index bb1b88807..2ddd3a15e 100644
--- a/weaver/src/main/java/org/aspectj/weaver/tools/cache/AsynchronousFileCacheBacking.java
+++ b/weaver/src/main/java/org/aspectj/weaver/tools/cache/AsynchronousFileCacheBacking.java
@@ -34,11 +34,11 @@ import org.aspectj.weaver.tools.TraceFactory;
* The class maintains an in-memory cache, and uses a queue of {@link AsyncCommand}s
* to signal to a background thread various actions required to &quot;synchronize&quot;
* the in-memory cache with the persisted copy. Whenever there is a cache miss
- * from the {@link #get(CachedClassReference)} call, the weaver issues a
- * {@link #put(CachedClassEntry)} call. This call has 2 side-effects:
+ * from the {@link #get(CachedClassReference, byte[])} call, the weaver issues a
+ * {@link #put(CachedClassEntry, byte[])} call. This call has 2 side-effects:
* <UL>
* <LI>
- * The in-memory cache is updated so that subsequent calls to {@link #get(CachedClassReference)}
+ * The in-memory cache is updated so that subsequent calls to {@link #get(CachedClassReference, byte[])}
* will not return the mapped value.
* </LI>
*