-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.1.3
-
Fix Version/s: 1.6.0
-
Component/s: Injection and Lookup
-
Labels:None
the type-check it too strict right now.
e.g. for:
public interface CustomBean<T>
{
//...
}
public class CustomBeanImpl implements CustomBean<String>
{
//...
}
the >manual< lookup by type with CustomBean.class fails, but it works correctly e.g. in case of:
public class CustomBeanImpl implements CustomBean
{
//...
}