Saigut / intellij-scheme

IntelliJ plugin for Scheme programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't use internal com.intellij.diagnostic.ITNReporter

chashnikov opened this issue · comments

The plugin has <errorHandler implementation="com.intellij.diagnostic.ITNReporter"/> in its plugin.xml file. This class sends exceptions thrown from the plugin code to JetBrains for internal processing, and it isn't supposed to be used by third-party plugins. Please remove this line. BTW this line should be highlighted as an error when you open plugin.xml in recent versions of IntelliJ IDEA.

If you want to provide exception reporting for your plugin you need to create your own implementation of com.intellij.openapi.diagnostic.ErrorReportSubmitter.

Thanks, I will fix this and update plugin.

Fixed: 87525e2