Change By: Marcus Bauer (11/Dec/12 10:37 AM)
Description: {code}
public Foo<T> {
  @Inject Event<T> event;
}

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

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

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

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

public FooBar extends Foo<Bar> {}

public Fub {
  @Inject FooBar foo;
}
{code}
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