diff options
author | aclement <aclement> | 2006-08-22 10:34:01 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-08-22 10:34:01 +0000 |
commit | 41af7600c8661ff5b7a66a1e97fb865b562bc296 (patch) | |
tree | 0cec4f89a289cdc7e8bc71de9113c72db2503100 /tests/bugs152/pr148027 | |
parent | 50f8ecc4339442c7abaf4d3a9995c1434b768ef2 (diff) | |
download | aspectj-41af7600c8661ff5b7a66a1e97fb865b562bc296.tar.gz aspectj-41af7600c8661ff5b7a66a1e97fb865b562bc296.zip |
code has moved into model area...154552, comment 3
Diffstat (limited to 'tests/bugs152/pr148027')
-rw-r--r-- | tests/bugs152/pr148027/A.aj | 15 | ||||
-rw-r--r-- | tests/bugs152/pr148027/C.aj | 10 |
2 files changed, 0 insertions, 25 deletions
diff --git a/tests/bugs152/pr148027/A.aj b/tests/bugs152/pr148027/A.aj deleted file mode 100644 index 306f14b68..000000000 --- a/tests/bugs152/pr148027/A.aj +++ /dev/null @@ -1,15 +0,0 @@ -package pkg; - -public aspect A { - - before() : C.pointcutInClass() { - } - - pointcut pointcutInAspect() : execution(void aMethod()); - - before() : pointcutInAspect() { - } - - public void aMethod() { - } -} diff --git a/tests/bugs152/pr148027/C.aj b/tests/bugs152/pr148027/C.aj deleted file mode 100644 index 63b4e6cb6..000000000 --- a/tests/bugs152/pr148027/C.aj +++ /dev/null @@ -1,10 +0,0 @@ -package pkg; - -public class C { - - pointcut pointcutInClass() : execution(void cMethod()); - - public void cMethod() { - - } -} |