Yauhen Lazurkin

Results 2 issues of Yauhen Lazurkin

I already for a long time try to understand how `workspace` is defined in `lsp-java` and fail. As I can see by default a workspace will be created at `~/.emacs.d/workspace`....

Example: ``` Graphviz.useEngine(new GraphvizCmdLineEngine()); Node a = node("a"); Node b = node("b"); Node c = node("c"); MutableGraph subgraph1 = mutGraph("subgraph1").setCluster(true).add(a.link(b)); MutableGraph subgraph2 = mutGraph("subgraph2").setCluster(true).add(c); MutableGraph g = mutGraph("example1"); g.add(subgraph1); g.add(subgraph2);...