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.

BinaryAspect.aj 204B

123456789101112
  1. package pkg;
  2. public aspect BinaryAspect {
  3. declare warning : (get(* System.out) || get(* System.err)) : "There should be no printlns";
  4. pointcut p() : execution(* *.*(..));
  5. before() : p() {
  6. }
  7. }