summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraclement <aclement>2008-10-29 20:27:48 +0000
committeraclement <aclement>2008-10-29 20:27:48 +0000
commitaa557a28af6ccb3bc0aa427665d5ec615d61d546 (patch)
tree3a8eb7e2c592debc09fff91cb8a4effeb00074fe /tests
parent3690a7b51950ab2495ecb8178a739048c37b740c (diff)
downloadaspectj-aa557a28af6ccb3bc0aa427665d5ec615d61d546.tar.gz
aspectj-aa557a28af6ccb3bc0aa427665d5ec615d61d546.zip
moved to 163
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs161/pr173978/Test.java7
-rw-r--r--tests/bugs161/pr173978/TestAroundAspect.java6
2 files changed, 0 insertions, 13 deletions
diff --git a/tests/bugs161/pr173978/Test.java b/tests/bugs161/pr173978/Test.java
deleted file mode 100644
index 459d3cd20..000000000
--- a/tests/bugs161/pr173978/Test.java
+++ /dev/null
@@ -1,7 +0,0 @@
-public class Test{
- public void sayHello(String message){
- System.out.println(message);
- }
-}
-
-
diff --git a/tests/bugs161/pr173978/TestAroundAspect.java b/tests/bugs161/pr173978/TestAroundAspect.java
deleted file mode 100644
index 9a884dd63..000000000
--- a/tests/bugs161/pr173978/TestAroundAspect.java
+++ /dev/null
@@ -1,6 +0,0 @@
-public aspect TestAroundAspect{
- void around(): execution(void Test.sayHello(String)){
- proceed();
- }
-}
-