aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1920/github_214/SecondAspect.java
blob: a4cc1bdb2cc5c73bf1d74926664fcb834a374068 (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(@MarkerTwo * *(..))")
  public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
    System.out.println("SecondAspect: " + joinPoint);
    return joinPoint.proceed();
  }
}