-
Methods Method Description com.vaadin.flow.component.checkbox.CheckboxGroup.getDataProvider() com.vaadin.flow.component.checkbox.CheckboxGroup.setDataProvider(DataProvider<T, ?>) use instead one of thesetItemsmethods which provide access to eitherCheckboxGroupListDataVieworCheckboxGroupDataViewcom.vaadin.flow.component.checkbox.CheckboxGroup.setItems(Stream<T>) Because the stream is collected to a list anyway, useHasListDataView.setItems(Collection)instead.