updated to AspectJ 1.6.5

This commit is contained in:
Juergen Hoeller 2009-08-31 11:30:30 +00:00
parent 8754f0bc85
commit 8675281972
1 changed files with 5 additions and 0 deletions

View File

@ -132,6 +132,11 @@ public class MethodInvocationProceedingJoinPoint implements ProceedingJoinPoint,
return ProceedingJoinPoint.METHOD_EXECUTION;
}
public int getId() {
// TODO: It's just an adapter but returning 0 might still have side effects...
return 0;
}
public JoinPoint.StaticPart getStaticPart() {
return this;
}