Skip to content

Commit

Permalink
fix: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 4, 2023
1 parent 3786575 commit fe52832
Showing 1 changed file with 2 additions and 3 deletions.
@@ -1,6 +1,5 @@
package cc.unitmesh.idea.prompting

import cc.unitmesh.devti.context.MethodContextProvider
import cc.unitmesh.devti.custom.action.CustomPromptConfig
import cc.unitmesh.devti.gui.chat.ChatActionType
import cc.unitmesh.devti.provider.ContextPrompter
Expand Down Expand Up @@ -134,10 +133,10 @@ open class JavaContextPrompter : ContextPrompter() {
val element = creationContext.element ?: return logger.error("element is null")

val testDataBuilder = JavaTestDataBuilder()
testDataBuilder.inBoundData(element).forEach { (key, value) ->
testDataBuilder.inBoundData(element).forEach { (_, value) ->
additionContext += "//input Classes: \n$value\n"
}
testDataBuilder.outBoundData(element).forEach { (key, value) ->
testDataBuilder.outBoundData(element).forEach { (_, value) ->
additionContext += "//output Class: \n$value\n"
}
}
Expand Down

0 comments on commit fe52832

Please sign in to comment.