aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher/src
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-07-23 11:31:13 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2024-01-06 10:09:11 +0100
commit8518fcf96e52edea67b862ade95b64f63607e605 (patch)
treebebd46a1f1204d1d3812853be83189ec2066a4c5 /org.aspectj.matcher/src
parent9ddd317779717bdb8f4eb1d61b7bca596a1846e3 (diff)
downloadaspectj-8518fcf96e52edea67b862ade95b64f63607e605.tar.gz
aspectj-8518fcf96e52edea67b862ade95b64f63607e605.zip
Globally replace HTTP links to eclipse.org by HTTPS
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'org.aspectj.matcher/src')
-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 895108ade..33f0b53eb 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 http://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
+ // see https://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
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 http://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
+ // see https://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
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 http://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
+ // see https://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
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 http://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
+ // see https://www.eclipse.org/aspectj/doc/next/adk15notebook/join-point-modifiers.html
return FuzzyBoolean.NO;
}
}