Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] NullPointer in introductions

Hi,
 
I'm getting a NullPointer error when trying to introduct a method that have a JoinPoint parameter:
 
public aspect IntroductionAspect {
  public void AClass.aMethod(JoinPoint jp) {
    ...
  }
}
 
Any suggestions?
 
Thanks,
 
André

Back to the top