diff options
Diffstat (limited to 'weaver/src')
-rw-r--r-- | weaver/src/main/java/org/aspectj/weaver/tools/cache/AsynchronousFileCacheBacking.java | 6 |
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 "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: * <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> * |