From: aclement Date: Fri, 25 Aug 2006 09:55:17 +0000 (+0000) Subject: removed, needs a rename X-Git-Tag: BEFORE_133532~78 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8516e5ac30885e0dcf1546cc372f1dd0d3f00d63;p=aspectj.git removed, needs a rename --- diff --git a/tests/model/PR141730_1/pr141730.aj b/tests/model/PR141730_1/pr141730.aj deleted file mode 100644 index 1698abd3a..000000000 --- a/tests/model/PR141730_1/pr141730.aj +++ /dev/null @@ -1,33 +0,0 @@ -aspect A { - - pointcut p() : execution(* *.*(..)) || execution(*.new(..)); - - before() : p() { - - } - -} - -class C { - - public C() {} - - public void method() {} - - public void intMethod(int i) {} - - public void stringMethod(String s) {} - - public void myClassMethod(MyClass s) {} - - public void twoArgsMethod(int i, String s) {} - - public static void main(String[] args) {} - - public void multiMethod(String[][] s) {} - - public void intArray(int[] i) {} - -} - -class MyClass {}