lsp-treemacs-call-hierarchy 不工作

Environment

macOS: Ventura 13.5.1
emacs: [email protected] (installed by brew)
lsp-java: 20230827.428
jdtls : jdt-language-server-1.26.0-202307271613
java : 17 (JAVA_HOME is setted by jenv)
lsp-treemacs: Version: 20230811.611
treemacs : version 20230912.1707

To Reproduce

  1. C-x C-f``创建 Application.java`
  2. 编码
public class Application{
    public static void main(String[] args){
	test();
    }

    public static void test(){
	test1();
    }

    public static void test1(){
	System.out.println("hello world!");
    }

}

  1. 光标放在main函数上
  2. M-x lsp-treemacs-call-hierarchy

Expected behavior

- main
- -test
- - -test1

ScreenShots

image Use C-u M-x lsp-treemacs-call-hierarchy

Still doesn’t work. image