You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PR93345.aj 260B

123456789101112
  1. // "XLint warning for advice not applied with cflow(execution)"
  2. class AClass {
  3. }
  4. aspect AnAspect {
  5. pointcut a() : execution(* *(..)) && cflow( execution(* *(..)) );
  6. before() : a() {
  7. System.out.println("before a");
  8. }
  9. }