File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
main/kotlin/com/github/simiacryptus/aicoder/ui
test/kotlin/com/github/simiacryptus/aicoder/util Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ class TemperatureControlWidgetFactory : StatusBarWidgetFactory {
6565 return Consumer { event: MouseEvent ->
6666 val widgetComp = event.component
6767 if (widgetComp != null ) {
68- val modePanel = Panel ()
68+ val modePanel = JPanel ()
6969 modePanel.layout = VerticalLayout (0 )
7070 modePanel.add(JBLabel (" AI Coding Assistant" ))
7171
Original file line number Diff line number Diff line change 11package com.github.simiacryptus.aicoder.util
22
3- import com.github.simiacryptus.diff.ApxPatchUtil
3+ import com.github.simiacryptus.diff.PatchUtil
44import org.junit.Assert.assertTrue
55import org.junit.Test
66
@@ -70,7 +70,7 @@ class ApxPatchUtilTest {
7070
7171 @Test
7272 fun testPatch () {
73- val result = ApxPatchUtil .patch(source, patch)
73+ val result = PatchUtil .patch(source, patch)
7474 println (result)
7575 assertTrue(result.contains(" for (value in values" ))
7676 }
You can’t perform that action at this time.
0 commit comments