Details
-
Improvement
-
Resolution: Fixed
-
Major
-
5.1
-
None
Description
Right now you have to indicate the converted type as hint
@Component @Named("java.awt.Color") @Singleton public class ColorConverter extends AbstractConverter { ... }
it would be nicer to indicate it as generic type
@Component @Singleton public class ColorConverter extends AbstractConverter<Color> { ... }