Actions
bug #7229
closedobsolte code in AbstractEditorPresenter.onEditorDeleteEvent?
Start date:
Due date:
% Done:
100%
Estimated time:
Severity:
normal
Found in Version:
Description
changing the Flush mode in is most likely obsolete:
/**
* Regarding changing the Flush mode see see also {@link ViewScopeConversationHolder}
*
* @param saveEvent
*/
@EventBusListenerMethod
public void onEditorDeleteEvent(Event<EditorDeleteEvent<DTO>> deleteEvent){
FlushMode previousFlushMode = getSession().getFlushMode();
getSession().setFlushMode(FlushMode.AUTO);
deleteBean(deleteEvent.getPayload().getBean());
getSession().setFlushMode(previousFlushMode);
}
Updated by Andreas Kohlbecker over 6 years ago
- Status changed from New to Closed
Actions