PT #162161994: Remove unnecessary code from atom-commons

This commit is contained in:
BoykoAlex
2018-11-26 20:29:09 -05:00
parent e59b6a5698
commit e3afd7d53c

View File

@@ -38,18 +38,6 @@ export class JavaProcessLanguageClient extends AutoLanguageClient {
return Promise.reject(new Error(detail));
}
// TODO: Unclear why that was overriden
// protected getInitializeParams(projectPath: string, process: LanguageServerProcess): InitializeParams {
// const initParams = super.getInitializeParams(projectPath, process);
// initParams.capabilities = {
// workspace: {
// executeCommand: {
// }
// }
// };
// return initParams;
// }
protected startServerProcess(projectPath: string): LanguageServerProcess | Promise<LanguageServerProcess> {
// TODO: Remove when debugging is over
const atomEnv: AtomEnvironment = atom;