cuba icon indicating copy to clipboard operation
cuba copied to clipboard

Events for InstanceLoader lack generic entity type

Open GlebDurygin opened this issue 5 years ago • 0 comments

Environment

  • Platform version: 7.2.13

Description of the bug or enhancement

InstanceLoader#addPreLoaderEvent(Consumer<PreLoadEvent> listener) and InstanceLoader#addPostLoaderEvent(Consumer<PostLoadEvent> listener) methods do not have PreLoadEvent and PostLoadEvent have no generic value type.

  • Expected behavior
InstanceLoader#addPreLoaderEvent(Consumer<PreLoadEvent<E>> listener)
InstanceLoader#addPostLoaderEvent(Consumer<PostLoadEvent<E>> listener)
  • Actual behavior image image

GlebDurygin avatar Apr 15 '21 08:04 GlebDurygin