WIP: goto symbol in file dialog

This commit is contained in:
Kris De Volder
2017-09-28 16:39:52 -07:00
parent 7c4c3f50f5
commit adced19b09
17 changed files with 851 additions and 1 deletions

View File

@@ -101,6 +101,10 @@ public class SpringBootJavaLanguageServer extends ProcessStreamConnectionProvide
}
protected String getLanguageServerJARLocation() {
String fromSysprop = System.getProperty("boot-java-ls-jar", null);
if (fromSysprop!=null) {
return fromSysprop;
}
String languageServer = "boot-java-language-server-" + Constants.LANGUAGE_SERVER_VERSION;
Bundle bundle = Platform.getBundle(Constants.PLUGIN_ID);