aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1922/github_302/SecondAspect.aj
blob: 5f088b63a3cce36a0990d0d4b9372a8d34a01184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;

@Aspect
public class SecondAspect {
  @Around("execution(* toIntercept())")
  public Object doAround(ProceedingJoinPoint joinPoint) throws Throwable {
    //System.out.println(getClass().getSimpleName());
    return joinPoint.proceed();
  }
}