File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/com/tang/intellij/lua/errorreporting Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1717package com.tang.intellij.lua.errorreporting
1818
1919import com.intellij.CommonBundle
20- import com.intellij.diagnostic.AbstractMessage
2120import com.intellij.ide.DataManager
2221import com.intellij.ide.plugins.PluginManagerCore
2322import com.intellij.ide.plugins.PluginUtil
@@ -172,7 +171,8 @@ class GitHubErrorReporter : LuaErrorReportSubmitter() {
172171 }
173172 }
174173
175- (event.data as ? AbstractMessage )?.let { bean.attachments = it.includedAttachments }
174+ // fix compatibility verification problems: internal API usages
175+ // (event.data as? AbstractMessage)?.let { bean.attachments = it.includedAttachments }
176176 val project = CommonDataKeys .PROJECT .getData(dataContext)
177177 val reportValues = getKeyValuePairs(
178178 project,
You can’t perform that action at this time.
0 commit comments