blob: fb45a513f2ac48f06eb1ce6e0242843f74fb70ee (
plain)
1
2
3
4
5
6
7
8
9
|
package de.scrum_master.aspect;
import de.scrum_master.app.Application;
public aspect MyAspect {
before() : execution(* Application.lambda$0(..)) {
// System.out.println(thisJoinPointStaticPart);
}
}
|