Browse Source

removed, needs a rename

tags/BEFORE_133532
aclement 18 years ago
parent
commit
8516e5ac30
1 changed files with 0 additions and 33 deletions
  1. 0
    33
      tests/model/PR141730_1/pr141730.aj

+ 0
- 33
tests/model/PR141730_1/pr141730.aj View File

@@ -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 {}

Loading…
Cancel
Save