Skip to content

Commit

Permalink
Fix class cass exception on provider
Browse files Browse the repository at this point in the history
  • Loading branch information
yarisvt committed Jun 13, 2023
1 parent 0e5caab commit f962797
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private void castAndSetDataProvider(DataProvider<T, SerializablePredicate<T>> pr
if (provider instanceof CallbackDataProvider) {
setItems((CallbackDataProvider) provider);
} else if (provider instanceof ListDataProvider) {
setItems(new MultiSelectIgnoreDiacriticsCaptionFilter<>(entityModel, true, false), (Collection<T>) provider);
setItems(new MultiSelectIgnoreDiacriticsCaptionFilter<>(entityModel, true, false), ((ListDataProvider<T>) provider).getItems());
}
}

Expand Down

0 comments on commit f962797

Please sign in to comment.