blob: e7200e5670a2f9c380c13f112d5a2f155349725d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package pkg;
public aspect SourceAspect {
declare warning : (get(* System.out) || get(* System.err)) : "There should be no printlns";
pointcut p() : execution(* *.*(..));
before() : p() {
}
}
|