Put back tools.jar on the classpath

This commit is contained in:
BoykoAlex
2019-05-23 13:48:07 -04:00
parent cbfeb6a0a3
commit ef2ed67dc1

View File

@@ -113,6 +113,11 @@ public abstract class STS4LanguageServerProcessStreamConnector extends ProcessSt
classpath.append(File.separator);
classpath.append('*');
if (runtime.toolsJar != null) {
classpath.append(File.pathSeparator);
classpath.append(runtime.toolsJar);
}
command.add(classpath.toString());
command.add("-Dsts.lsp.client=eclipse");