diff options
author | acolyer <acolyer> | 2005-03-23 16:47:55 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-03-23 16:47:55 +0000 |
commit | 68f63508828d1c1ea7076d051cc77713625f6a03 (patch) | |
tree | 40e125609a1fbfe8423f7e439d88da6b997668c4 /tests/options/aspectpath | |
parent | ef3044a08dd1e5556c03e614ce8d799d61aaf041 (diff) | |
download | aspectj-68f63508828d1c1ea7076d051cc77713625f6a03.tar.gz aspectj-68f63508828d1c1ea7076d051cc77713625f6a03.zip |
fix for Bug 84122 - Allow aspectPath to contain directories
Diffstat (limited to 'tests/options/aspectpath')
-rw-r--r-- | tests/options/aspectpath/MyAspect.aj | 5 | ||||
-rw-r--r-- | tests/options/aspectpath/MyClass.java | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/options/aspectpath/MyAspect.aj b/tests/options/aspectpath/MyAspect.aj new file mode 100644 index 000000000..4b2c632d7 --- /dev/null +++ b/tests/options/aspectpath/MyAspect.aj @@ -0,0 +1,5 @@ +public aspect MyAspect { + + declare warning : execution(* *(..)) : "a method"; + +}
\ No newline at end of file diff --git a/tests/options/aspectpath/MyClass.java b/tests/options/aspectpath/MyClass.java new file mode 100644 index 000000000..ef0d28767 --- /dev/null +++ b/tests/options/aspectpath/MyClass.java @@ -0,0 +1,5 @@ +public class MyClass { + + void foo() {} + +}
\ No newline at end of file |