aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2024-02-15 08:59:28 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2024-02-15 08:59:28 +0700
commit2f2416bd5de9a0f4f83fcf15d9b6a8f32d39bc47 (patch)
tree9baa172068409b5a9d9d18962a1d5d195368b02e /org.aspectj.matcher
parent5f5d10b184daaeafa9c63b53d77eb4004985d8d7 (diff)
downloadaspectj-2f2416bd5de9a0f4f83fcf15d9b6a8f32d39bc47.tar.gz
aspectj-2f2416bd5de9a0f4f83fcf15d9b6a8f32d39bc47.zip
Replace links to https://www.eclipse.org/aspectj/doc/next
This part of the website is outdated and will be deleted. Instead, link to ADOCs right in the GitHub repository. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'org.aspectj.matcher')
-rw-r--r--org.aspectj.matcher/src/main/java/org/aspectj/weaver/patterns/SignaturePattern.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.aspectj.matcher/src/main/java/org/aspectj/weaver/patterns/SignaturePattern.java b/org.aspectj.matcher/src/main/java/org/aspectj/weaver/patterns/SignaturePattern.java
index 33f0b53eb..d04d127a4 100644
--- a/org.aspectj.matcher/src/main/java/org/aspectj/weaver/patterns/SignaturePattern.java
+++ b/org.aspectj.matcher/src/main/java/org/aspectj/weaver/patterns/SignaturePattern.java
@@ -325,7 +325,7 @@ public class SignaturePattern extends PatternNode implements ISignaturePattern {
}
// if we got a "MAYBE" it's worth looking at the other signatures
// The first signature is the subject signature - and against it we must match modifiers/annotations/throws
- // see https://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
+ // see https://github.com/eclipse-aspectj/aspectj/blob/master/docs/adk15notebook/joinpointsignatures.adoc#join-point-modifiers
subjectMatch = false;
// Early exit
if (wantsAnnotationMatch) {
@@ -346,7 +346,7 @@ public class SignaturePattern extends PatternNode implements ISignaturePattern {
}
// Only the subject is checked for modifiers
- // see https://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
+ // see https://github.com/eclipse-aspectj/aspectj/blob/master/docs/adk15notebook/joinpointsignatures.adoc#join-point-modifiers
if (subjectMatch && !modifiers.matches(aMember.getModifiers())) {
return FuzzyBoolean.NO;
}
@@ -366,7 +366,7 @@ public class SignaturePattern extends PatternNode implements ISignaturePattern {
}
// Only the subject is checked for annotations (239441/119749)
- // see https://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
+ // see https://github.com/eclipse-aspectj/aspectj/blob/master/docs/adk15notebook/joinpointsignatures.adoc#join-point-modifiers
if (subjectMatch) {
// The annotations must match if specified
if (!matchesAnnotations(aMember, inAWorld).alwaysTrue()) {
@@ -717,7 +717,7 @@ public class SignaturePattern extends PatternNode implements ISignaturePattern {
return FuzzyBoolean.YES;
} else {
// do NOT look at ancestor members... only the subject can have an annotation match
- // see https://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
+ // see https://github.com/eclipse-aspectj/aspectj/blob/master/docs/adk15notebook/joinpointsignatures.adoc#join-point-modifiers
return FuzzyBoolean.NO;
}
}