java-language-server
java-language-server copied to clipboard
Avoid scanning all classes on attach
Clients try to enable all breakpoints on attach, but currently it ends up with querying all classes loaded in the VM today. This is very slow; it takes ~5ms per class on my environment.
This patch workarounds the problem by skipping classes that are clearly irrelevant.