File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
exts/devins-lang/src/main/kotlin/cc/unitmesh/devti/language/compiler/exec Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -7,21 +7,18 @@ import cc.unitmesh.devti.devin.InsCommandStatus
7
7
import cc.unitmesh.devti.devin.dataprovider.BuiltinCommand
8
8
import cc.unitmesh.devti.language.compiler.model.LineInfo
9
9
import cc.unitmesh.devti.language.utils.lookupFile
10
- import com.intellij.openapi.diagnostic.logger
11
10
import com.intellij.openapi.project.Project
12
11
import com.intellij.psi.PsiManager
13
12
14
13
/* *
15
- * FileAutoCommand is responsible for reading a file and returning its contents.
14
+ * FileInsCommand is responsible for reading a file and returning its contents.
16
15
*
17
16
* @param myProject the Project in which the file operations are performed
18
17
* @param prop the property string containing the file name and optional line range
19
18
*
20
19
*/
21
20
class FileInsCommand (private val myProject : Project , private val prop : String ) : InsCommand {
22
21
override val commandName: BuiltinCommand = BuiltinCommand .FILE
23
-
24
- private val logger = logger<FileInsCommand >()
25
22
private val output = StringBuilder ()
26
23
27
24
override suspend fun execute (): String? {
You can’t perform that action at this time.
0 commit comments