Issue Type: Bug Bug
Affects Versions: 1.1.9.Final
Assignee: Unassigned
Components: Bootstrap and Metamodel API
Created: 19/Aug/12 6:22 PM
Description:

In testing the SE Weld bootstrap I came across the protected Weld.getInstanceByType(BeanManager manager, Class<T> type, Annotation... bindings) in the org.jboss.weld.environment.se.Weld class. This method fails to pass the bindings argument onto the BeanManager.getBeans call:

final Bean<?> bean = manager.resolve(manager.getBeans(type));

this should be:

final Bean<?> bean = manager.resolve(manager.getBeans(type, bindings));

Environment: Java SE 6
Project: Weld
Priority: Minor Minor
Reporter: Scott Stark
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira