This is intentional. There has been a clarification in the specification that required this behavior. See https://issues.jboss.org/browse/CDI-304 for details. You should not use raw types. You can always replace it with an unbound type variable, e.g.:
public <T1, T2> StepContext<T1, T2> getStepContext()
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
This is intentional. There has been a clarification in the specification that required this behavior. See https://issues.jboss.org/browse/CDI-304 for details. You should not use raw types. You can always replace it with an unbound type variable, e.g.:
public <T1, T2> StepContext<T1, T2> getStepContext()