private void registerActionShortcuts(@NotNull InspectionToolPresentation presentation) {
   final QuickFixAction[] fixes = presentation.getQuickFixes(RefEntity.EMPTY_ELEMENTS_ARRAY);
   if (fixes != null) {
     for (QuickFixAction fix : fixes) {
       fix.registerCustomShortcutSet(fix.getShortcutSet(), this);
     }
   }
 }