diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-15 08:59:28 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-15 08:59:28 +0700 |
commit | 2f2416bd5de9a0f4f83fcf15d9b6a8f32d39bc47 (patch) | |
tree | 9baa172068409b5a9d9d18962a1d5d195368b02e /tests/bugs164 | |
parent | 5f5d10b184daaeafa9c63b53d77eb4004985d8d7 (diff) | |
download | aspectj-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 'tests/bugs164')
-rw-r--r-- | tests/bugs164/pr265695/Asp.aj | 2 | ||||
-rw-r--r-- | tests/bugs164/pr265695/AspNew.aj | 2 |
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+.*(..)) { } } |