diff options
Diffstat (limited to 'tests/bugs1922/github_302/SecondAspect.aj')
-rw-r--r-- | tests/bugs1922/github_302/SecondAspect.aj | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs1922/github_302/SecondAspect.aj b/tests/bugs1922/github_302/SecondAspect.aj new file mode 100644 index 000000000..5f088b63a --- /dev/null +++ b/tests/bugs1922/github_302/SecondAspect.aj @@ -0,0 +1,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(); + } +} |