Skip to content

Commit

Permalink
Bug fix (Java11 generics restrictions)
Browse files Browse the repository at this point in the history
  • Loading branch information
fparoni committed Mar 14, 2022
1 parent 71520c2 commit 26c5d75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ protected <V> Optional<Input<V>> buildPropertyEditor(ItemListingColumn<String, T
}
// check specific registry
if (getPropertyRendererRegistry().isPresent()) {
return (Optional<? extends Input<V>>) getPropertyRendererRegistry().get().getRenderer(Input.class, property)
return getPropertyRendererRegistry().get().getRenderer(Input.class, property)
.map(r -> r.render(property));
} else {
// use default
Expand Down

0 comments on commit 26c5d75

Please sign in to comment.