From 2f2416bd5de9a0f4f83fcf15d9b6a8f32d39bc47 Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Thu, 15 Feb 2024 08:59:28 +0700 Subject: 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 --- .../main/java/org/aspectj/weaver/patterns/SignaturePattern.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'org.aspectj.matcher') 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; } } -- cgit v1.2.3