KeymapHelpIdPresenter: API tests

NET-MR-15386

GitOrigin-RevId: 71df7c53aaa798a7228d8b5ee4e0bcc73014599b
This commit is contained in:
Ivan Migalev
2024-10-10 16:34:40 +02:00
committed by intellij-monorepo-bot
parent 9b9a5a9380
commit 594cddbb8f
2 changed files with 3 additions and 1 deletions

View File

@@ -2312,6 +2312,8 @@ a:com.intellij.openapi.help.HelpManager
- s:getInstance():com.intellij.openapi.help.HelpManager
- a:invokeHelp(java.lang.String):V
- ps:logWillOpenHelpId(java.lang.String):V
com.intellij.openapi.help.KeymapHelpIdPresenter
- a:getKeymapIdForHelp(com.intellij.openapi.keymap.Keymap):java.lang.String
a:com.intellij.openapi.help.WebHelpProvider
- com.intellij.openapi.extensions.PluginAware
- <init>():V

View File

@@ -4,7 +4,7 @@ package com.intellij.help.impl
import com.intellij.openapi.help.KeymapHelpIdPresenter
import com.intellij.openapi.keymap.Keymap
class KeymapHelpIdPresenterImpl : KeymapHelpIdPresenter {
internal class KeymapHelpIdPresenterImpl : KeymapHelpIdPresenter {
override fun getKeymapIdForHelp(keymap: Keymap): String {
// Presentable name is currently used as keymap ID on the IntelliJ docs side. See IDEA-276358
return keymap.presentableName