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.

MyAspect.java 210B

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