Skip to content

Commit 457bf89

Browse files
committed
refactor(intentions): update intention helper imports
Update the imports in IntentionHelperUtil.kt to use the new base classes for CustomAction, CustomDocumentation, and TeamPrompt. Also update the import for AbstractChatIntention to ChatBaseIntention. This refactor improves code organization and maintainability.
1 parent 08431fb commit 457bf89

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/222/main/kotlin/cc/unitmesh/devti/intentions/IntentionHelperUtil.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package cc.unitmesh.devti.intentions
22

3-
import cc.unitmesh.devti.custom.CustomActionIntention
4-
import cc.unitmesh.devti.custom.CustomDocumentationIntention
5-
import cc.unitmesh.devti.custom.TeamPromptIntention
3+
import cc.unitmesh.devti.custom.CustomActionBaseIntention
4+
import cc.unitmesh.devti.custom.CustomDocumentationBaseIntention
5+
import cc.unitmesh.devti.custom.TeamPromptBaseIntention
66
import cc.unitmesh.devti.custom.action.CustomPromptConfig
77
import cc.unitmesh.devti.custom.team.TeamPromptsBuilder
8-
import cc.unitmesh.devti.intentions.action.base.AbstractChatIntention
8+
import cc.unitmesh.devti.intentions.action.base.ChatBaseIntention
99
import com.intellij.codeInsight.intention.IntentionAction
1010
import com.intellij.codeInsight.intention.IntentionActionBean
1111
import com.intellij.openapi.components.service

0 commit comments

Comments
 (0)