I’d like to use ToolWindowManager.registerToolWindow(id: String, builder: RegisterToolWindowTaskBuilder.() -> Unit): ToolWindow
in a plugin.
The method is inline
and is NOT marked as @Internal
, but it’s using @Internal
method
fun registerToolWindow(task: RegisterToolWindowTask): ToolWindow
.
The inlined use of the internal method is flagged by the plugin verifier, as far as I understand.
Is the method I’d like to use @Internal
API or is it okay to use it?
Thanks!