From 3255a3c562ce8dccd4abaf2f30bc04d4d7085fe2 Mon Sep 17 00:00:00 2001 From: Jerry James Date: Mon, 14 Sep 2020 08:28:28 -0600 Subject: Fix javadoc references to nonexistent fields, classes, or packages --- .../aspectj/weaver/tools/cache/AsynchronousFileCacheBacking.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'weaver/src') 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 "synchronize" * 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: *