Switch to a specific commit of atom-languageclient

This commit is contained in:
BoykoAlex
2017-08-09 15:09:46 -04:00
parent e8538e801f
commit dfd1c64bdf

View File

@@ -10,12 +10,12 @@ const {AutoLanguageClient, DownloadFile} = require('atom-languageclient');
export class JarLanguageClient extends AutoLanguageClient {
constructor(serverDownloadUrl, serverHome) {
constructor(serverDownloadUrl, serverHome, serverLauncherJar) {
super();
this.serverHome = serverHome;
this.serverDownloadUrl = serverDownloadUrl;
this.serverLauncherJar = path.basename(url.parse(this.serverDownloadUrl).pathname);
this.serverLauncherJar = serverLauncherJar;
}
startServerProcess () {