From 8516e5ac30885e0dcf1546cc372f1dd0d3f00d63 Mon Sep 17 00:00:00 2001 From: aclement Date: Fri, 25 Aug 2006 09:55:17 +0000 Subject: [PATCH] removed, needs a rename --- tests/model/PR141730_1/pr141730.aj | 33 ------------------------------ 1 file changed, 33 deletions(-) delete mode 100644 tests/model/PR141730_1/pr141730.aj 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 {} -- 2.39.5