jhorstmann / zuchini

A reimplementation of gherkin and cucumber for java based on antlr4 and junit
11 stars 3 forks source link

@Convert.value() requires incorrect type #15

Closed whiskeysierra closed 7 years ago

whiskeysierra commented 7 years ago
Class<Converter<?>> value();

should probably be:

Class<? extends Converter<?>> value();