File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
src/plugin-saxon/main/uk/co/reecedunn/intellij/plugin/saxon/query/s9api Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 1515 */
1616package uk.co.reecedunn.intellij.plugin.saxon.query.s9api
1717
18- import com.intellij.execution.executors.DefaultDebugExecutor
1918import com.intellij.execution.executors.DefaultRunExecutor
2019import com.intellij.lang.Language
2120import com.intellij.navigation.ItemPresentation
@@ -59,9 +58,8 @@ object SaxonS9API : ItemPresentation, QueryProcessorApi {
5958 override fun canExecute (language : Language , executorId : String ): Boolean {
6059 val run = executorId == DefaultRunExecutor .EXECUTOR_ID
6160 val profile = executorId == DefaultProfileExecutor .EXECUTOR_ID
62- val debug = executorId == DefaultDebugExecutor .EXECUTOR_ID
6361 return when (language) {
64- XQuery , XSLT -> run || profile || debug
62+ XQuery , XSLT -> run || profile
6563 XPath -> run
6664 else -> false
6765 }
You can’t perform that action at this time.
0 commit comments