aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1921/github_288/FirstAspect.aj
blob: 63ef73ff9014a22e28b352a10e057a1dc60753ae (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 FirstAspect {
  @Around("execution(* doSomething())")
  public Object doAround(ProceedingJoinPoint joinPoint) throws Throwable {
    System.out.println(getClass().getSimpleName());
    return joinPoint.proceed();
  }
}