We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f9e6f5 commit bb007ccCopy full SHA for bb007cc
1 file changed
lang/java/lib.go
@@ -16,7 +16,6 @@ package java
16
17
import (
18
"fmt"
19
- "github.com/cloudwego/abcoder/lang/log"
20
"os"
21
"path/filepath"
22
"runtime"
@@ -80,9 +79,6 @@ func generateExecuteCmd(LspOptions map[string]string) string {
80
79
if len(LspOptions["java.home"]) != 0 {
81
javaCmd = LspOptions["java.home"] + " "
82
}
83
- join := strings.Join(args, " ")
84
-
85
- log.Error(javaCmd + join)
86
return javaCmd + strings.Join(args, " ")
87
88
0 commit comments