aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs164')
-rw-r--r--tests/bugs164/pr265695/Asp.aj2
-rw-r--r--tests/bugs164/pr265695/AspNew.aj2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/bugs164/pr265695/Asp.aj b/tests/bugs164/pr265695/Asp.aj
index 50df2bbce..e669c0e01 100644
--- a/tests/bugs164/pr265695/Asp.aj
+++ b/tests/bugs164/pr265695/Asp.aj
@@ -18,7 +18,7 @@ class DemoServiceImpl implements DemoService {
aspect X {
// None of these match, the subject at execution(secureMethod()) does not have the annotation
- // 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
before(): execution(@Secured * *Service+.*(..)) { }
before(): execution(@Secured * *Service.*(..)) { }
diff --git a/tests/bugs164/pr265695/AspNew.aj b/tests/bugs164/pr265695/AspNew.aj
index 3f61600e6..a7c9b6527 100644
--- a/tests/bugs164/pr265695/AspNew.aj
+++ b/tests/bugs164/pr265695/AspNew.aj
@@ -17,7 +17,7 @@ class DemoServiceImpl implements DemoService {
aspect X {
// None of these match, the subject at execution(secureMethod()) does not have the annotation
- // 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
before(): execution(@Secured! * *Service+.*(..)) { }
}