Issue Type: Bug Bug
Affects Versions: 1.1.10.Final
Assignee: Jozef Hartinger
Components: Events
Created: 11/Dec/12 10:35 AM
Description:
public Foo<T> {
  @Inject Event<T> event;
}

public Fub {
  @Inject Foo<Bar> foo;
}

This will result in Fub.foo.event being initialized as Event<T>.

On the other hand, with WELD-1111 fixed, injects the correctly typed Event<Bar>.

public Foo<T> {
  @Inject Event<T> event;
}

public FooBar extends Foo<Bar> {}

public Fub {
  @Inject FooBar foo;
}
Environment: JBoss AS 7.1.1 with manually updated WELD 1.1.10.Final
Project: Weld
Priority: Major Major
Reporter: Marcus Bauer
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