Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] AspectJ BCEL question

Hi everybody,

I noticed that AspectJ uses BCEL on its own. Why was that? Why doesn't
AspectJ use BCEL directly?

Like:
import org.aspectj.apache.bcel.generic.InstructionFactory;

Not the one directly from bcel like this:
import org.apache.bcel.generic.InstructionFactory;

The reason is that, I am using BCEL in my project and I really don't
want to have two BCELs floating around.

Any help is greatly appreciated.

Larry



Back to the top