|
Having e.g. this:
public void observerMilk(@Observes Milk milk, @Any Fruit fruit)
and trying to wrap the second parameter fruit (injection point) will fail during validation in org.jboss.weld.annotated.enhanced.jlr.AbstractEnhancedAnnotatedCallable, because callable instance has only one parameter (injection point) and common java method has two parameters.
|