diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-07-23 11:33:47 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 10:09:11 +0100 |
commit | e71a30312433f65c41caeaa4973a9956c53f8ad9 (patch) | |
tree | d839cb472d70694066d755ef309b1a6620da7c0a | |
parent | 8518fcf96e52edea67b862ade95b64f63607e605 (diff) | |
download | aspectj-e71a30312433f65c41caeaa4973a9956c53f8ad9.tar.gz aspectj-e71a30312433f65c41caeaa4973a9956c53f8ad9.zip |
Globally fix spelling error "dependancy/dependancies"
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
4 files changed, 4 insertions, 4 deletions
diff --git a/loadtime/src/main/java/org/aspectj/weaver/loadtime/Options.java b/loadtime/src/main/java/org/aspectj/weaver/loadtime/Options.java index 0c8abb12b..056d5517b 100644 --- a/loadtime/src/main/java/org/aspectj/weaver/loadtime/Options.java +++ b/loadtime/src/main/java/org/aspectj/weaver/loadtime/Options.java @@ -21,7 +21,7 @@ import org.aspectj.util.LangUtil; /** * A class that hanldes LTW options. Note: AV - I choosed to not reuse AjCompilerOptions and alike since those implies too many - * dependancies on jdt and ajdt modules. + * dependencies on jdt and ajdt modules. * * @author Alexandre Vasseur (alex AT gnilux DOT com) */ diff --git a/runtime/src/main/java/org/aspectj/lang/Aspects.java b/runtime/src/main/java/org/aspectj/lang/Aspects.java index c0523c8c6..70afeac34 100644 --- a/runtime/src/main/java/org/aspectj/lang/Aspects.java +++ b/runtime/src/main/java/org/aspectj/lang/Aspects.java @@ -21,7 +21,7 @@ import java.lang.reflect.InvocationTargetException; * Handles generic aspectOf method when those are not available in the aspects but added later on * thru load time weaving. * Aspects.aspectOf(..) is doing reflective calls to the aspect aspectOf, so for better performance - * consider using ajc compilation of the aspects and using them as a binary dependancies in your project. + * consider using ajc compilation of the aspects and using them as a binary dependencies in your project. * * @author Alexandre Vasseur */ diff --git a/runtime/src/main/java/org/aspectj/lang/Aspects14.java b/runtime/src/main/java/org/aspectj/lang/Aspects14.java index ffd111929..e27bb5b72 100644 --- a/runtime/src/main/java/org/aspectj/lang/Aspects14.java +++ b/runtime/src/main/java/org/aspectj/lang/Aspects14.java @@ -21,7 +21,7 @@ import java.lang.reflect.Modifier; * are not available in the aspects but added later on through load time weaving. Users on Java5 should use * the class Aspects instead. * Aspects14.aspectOf(..) is doing reflective calls to the aspect aspectOf, so for better performance - * consider using ajc compilation of the aspects and using them as a binary dependancies in your project. + * consider using ajc compilation of the aspects and using them as a binary dependencies in your project. */ public class Aspects14 { diff --git a/tests/src/test/java/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java b/tests/src/test/java/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java index e0b3000a2..93a8f8a9f 100644 --- a/tests/src/test/java/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java +++ b/tests/src/test/java/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java @@ -2443,7 +2443,7 @@ public class MultiProjectIncrementalTests extends AbstractMultiProjectIncrementa } /** - * Now the most complex test. Create a dependancy between two projects. Building one may affect whether the other does an + * Now the most complex test. Create a dependency between two projects. Building one may affect whether the other does an * incremental or full build. The structural information recorded in the state object should be getting used to control whether * a full build is necessary... */ |