Changed order of quickfixes
This commit is contained in:
@@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
package org.jetbrains.kotlin.idea.quickfix
|
package org.jetbrains.kotlin.idea.quickfix
|
||||||
|
|
||||||
|
import com.intellij.codeInsight.intention.HighPriorityAction
|
||||||
import com.intellij.codeInsight.intention.IntentionAction
|
import com.intellij.codeInsight.intention.IntentionAction
|
||||||
import com.intellij.openapi.editor.Editor
|
import com.intellij.openapi.editor.Editor
|
||||||
import com.intellij.openapi.project.Project
|
import com.intellij.openapi.project.Project
|
||||||
@@ -74,7 +75,7 @@ public object SuperClassNotInitialized : JetIntentionActionsFactory() {
|
|||||||
private class AddParenthesisFix(
|
private class AddParenthesisFix(
|
||||||
element: JetDelegatorToSuperClass,
|
element: JetDelegatorToSuperClass,
|
||||||
val putCaretIntoParenthesis: Boolean
|
val putCaretIntoParenthesis: Boolean
|
||||||
) : JetIntentionAction<JetDelegatorToSuperClass>(element) {
|
) : JetIntentionAction<JetDelegatorToSuperClass>(element), HighPriorityAction {
|
||||||
|
|
||||||
override fun getFamilyName() = "Change to constructor invocation" //TODO?
|
override fun getFamilyName() = "Change to constructor invocation" //TODO?
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user