diff options
Diffstat (limited to 'weaver/src')
4 files changed, 4 insertions, 4 deletions
diff --git a/weaver/src/main/java/org/aspectj/weaver/bcel/BcelTypeMunger.java b/weaver/src/main/java/org/aspectj/weaver/bcel/BcelTypeMunger.java index 62674dedf..8f4009eea 100644 --- a/weaver/src/main/java/org/aspectj/weaver/bcel/BcelTypeMunger.java +++ b/weaver/src/main/java/org/aspectj/weaver/bcel/BcelTypeMunger.java @@ -2062,7 +2062,7 @@ public class BcelTypeMunger extends ConcreteTypeMunger { } /** - * Returns a list of type variable aliases used in this munger. For example, if the ITD is 'int I<A,B>.m(List<A> las,List<B> + * Returns a list of type variable aliases used in this munger. For example, if the ITD is 'int I<A,B>.m(List<A> las,List<B> * lbs) {}' then this returns a list containing the strings "A" and "B". */ public List<String> getTypeVariableAliases() { diff --git a/weaver/src/main/java/org/aspectj/weaver/model/AsmRelationshipUtils.java b/weaver/src/main/java/org/aspectj/weaver/model/AsmRelationshipUtils.java index f9c9f6ae2..01cedfaa6 100644 --- a/weaver/src/main/java/org/aspectj/weaver/model/AsmRelationshipUtils.java +++ b/weaver/src/main/java/org/aspectj/weaver/model/AsmRelationshipUtils.java @@ -48,7 +48,7 @@ public class AsmRelationshipUtils { } /** - * Generates the pointcut details for the given pointcut, for example an anonymous pointcut will return '<anonymous pointcut>' + * Generates the pointcut details for the given pointcut, for example an anonymous pointcut will return '<anonymous pointcut>' * and a named pointcut called p() will return 'p()..' */ public static String genPointcutDetails(Pointcut pcd) { 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 8dada73f9..8203584f0 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 @@ -43,7 +43,7 @@ import org.aspectj.weaver.tools.TraceFactory; * </LI> * * <LI> - * An "update index" {@link AsyncCommand} is posted to the background + * An "update index" {@link AsyncCommand} is posted to the background * thread so that the newly mapped value will be persisted (eventually) * </LI> * </UL> diff --git a/weaver/src/main/java/org/aspectj/weaver/tools/cache/FlatFileCacheBacking.java b/weaver/src/main/java/org/aspectj/weaver/tools/cache/FlatFileCacheBacking.java index e5f45f92c..cd3a078ef 100644 --- a/weaver/src/main/java/org/aspectj/weaver/tools/cache/FlatFileCacheBacking.java +++ b/weaver/src/main/java/org/aspectj/weaver/tools/cache/FlatFileCacheBacking.java @@ -24,7 +24,7 @@ import org.aspectj.util.FileUtil; import org.aspectj.util.LangUtil; /** - * Uses a "flat" files model to store the cached instrumented classes + * Uses a "flat" files model to store the cached instrumented classes * and aspects - i.e., each class/aspect is stored as a <U>separate</U> (binary) * file. This is a good mechanism when the number of instrumented class is * relatively small (a few 10's). The reason for it is that scanning a folder |