我目前正在使用社区版 2024.2.1;不知道其他版本是否会发生同样的情况,但仍然如此。这是 IntelliJ 的错误日志:
com.intellij.diagnostic.PluginException:
ActionUpdateThread.OLD_EDTis deprecated and going to be removed soon.
'com.liferay.ide.idea.ui.modules.ext.NewModuleExtFilesAction' must override
getActionUpdateThread() method and choose EDT or BGT.
See ActionUpdateThread javadoc. [Plugin: com.liferay.ide.intellij.plugin]
at com.intellij.diagnostic.PluginProblemReporterImpl.createPluginExceptionByClass(PluginProblemReporterImpl.java:23)
at com.intellij.diagnostic.PluginException.createByClass(PluginException.java:90)
at com.intellij.diagnostic.PluginException.reportDeprecatedUsage(PluginException.java:125)
at com.intellij.openapi.actionSystem.ActionUpdateThreadAware.getActionUpdateThread(ActionUpdateThreadAware.java:21)
at com.intellij.openapi.actionSystem.AnAction.getActionUpdateThread(AnAction.java:201)
ChatGPT 建议编辑插件代码:
需要在类中重写
方法getActionUpdateThread()
com.liferay.ide.idea.ui.modules.ext.NewModuleExtFilesAction
但我无法直接访问它。