diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-07-23 11:31:13 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 10:09:11 +0100 |
commit | 8518fcf96e52edea67b862ade95b64f63607e605 (patch) | |
tree | bebd46a1f1204d1d3812853be83189ec2066a4c5 /tests/bugs164 | |
parent | 9ddd317779717bdb8f4eb1d61b7bca596a1846e3 (diff) | |
download | aspectj-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 'tests/bugs164')
-rw-r--r-- | tests/bugs164/pr265695/Asp.aj | 9 | ||||
-rw-r--r-- | tests/bugs164/pr265695/AspNew.aj | 8 |
2 files changed, 6 insertions, 11 deletions
diff --git a/tests/bugs164/pr265695/Asp.aj b/tests/bugs164/pr265695/Asp.aj index 296cb1f36..50df2bbce 100644 --- a/tests/bugs164/pr265695/Asp.aj +++ b/tests/bugs164/pr265695/Asp.aj @@ -13,18 +13,18 @@ interface DemoService { class DemoServiceImpl implements DemoService { - public void secureMethod() { } + public void secureMethod() { } } aspect X { // None of these match, the subject at execution(secureMethod()) does not have the annotation - // 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 before(): execution(@Secured * *Service+.*(..)) { } - + before(): execution(@Secured * *Service.*(..)) { } before(): execution(@Secured * DemoService.*(..)) { } - + } public class Asp { @@ -32,4 +32,3 @@ public class Asp { new DemoServiceImpl().secureMethod(); } } - diff --git a/tests/bugs164/pr265695/AspNew.aj b/tests/bugs164/pr265695/AspNew.aj index ae99590fb..3f61600e6 100644 --- a/tests/bugs164/pr265695/AspNew.aj +++ b/tests/bugs164/pr265695/AspNew.aj @@ -11,17 +11,14 @@ interface DemoService { void secureMethod(); } - class DemoServiceImpl implements DemoService { - public void secureMethod() { } + public void secureMethod() { } } aspect X { // None of these match, the subject at execution(secureMethod()) does not have the annotation - // 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 before(): execution(@Secured! * *Service+.*(..)) { } - - } public class AspNew { @@ -29,4 +26,3 @@ public class AspNew { new DemoServiceImpl().secureMethod(); } } - |