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.

AlwaysWeave2.java 129B

12345678910
  1. aspect A {
  2. before(): execution(* AlwaysWeave2.*(..)) && if(true) {}
  3. }
  4. public class AlwaysWeave2 {
  5. public void foo() {}
  6. }