xdev-software / intellij-plugin-save-actions

Supports configurable, Eclipse like, save actions, including "organize imports", "reformat code" and "rearrange code"
https://plugins.jetbrains.com/plugin/22113
Apache License 2.0
47 stars 3 forks source link

Override-only API usage violation: ``AnAction.actionPerformed(AnActionEvent)`` [2024.3+] #178

Closed AB-xdev closed 3 weeks ago

AB-xdev commented 1 month ago
1 override-only API usage violation

Save Actions X 1.3.1 invokes APIs marked with @ApiStatus.OverrideOnly, which indicates that the APIs must not be called outside the IntelliJ Platform but only overridden by its clients.
Override-only method usage violation (1)
AnAction.actionPerformed(AnActionEvent) (1)
Override-only method AnAction.actionPerformed(AnActionEvent) is invoked in BuildProcessor.lambda$static$5(Project). This method is marked with @ApiStatus.OverrideOnly annotation, which indicates that the method must be only overridden but not invoked by client code. See documentation of the @ApiStatus.OverrideOnly for more info.