Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] AspectJ 1.5.3: java.lang.NullPointerException at org.aspectj.apache.bcel.generic.MethodGen

Hi,

I'm pretty sure the NPE you are seeing is because of some other
transform occurring on the bytecode before AspectJ gets to see it -
and that transformation isn't always producing the most pleasant of
output.  The output bytecode is probably ok but the
linenumber/localvariable tables are not quite right.  So under
bugzilla 175806 I have just committed some changes to allow us to
tolerate this situation, take our 'best guess' at what the incoming
table information actually means, and continue with weaving.  The fix
is available in the latest builds you can download from the AspectJ
download page:

http://eclipse.org/aspectj

Andy.


Back to the top