Temporarily disable dynamic cloud-config features in bosh editor

This commit is contained in:
Kris De Volder
2017-07-21 12:09:07 -07:00
parent dc07bbf32a
commit ebcd3f41cb

View File

@@ -12,13 +12,12 @@ package org.springframework.ide.vscode.bosh;
import java.io.IOException;
import org.springframework.ide.vscode.bosh.models.BoshCommandCloudConfigProvider;
import org.springframework.ide.vscode.commons.languageserver.LaunguageServerApp;
public class Main {
public static void main(String[] args) throws IOException, InterruptedException {
LaunguageServerApp.start(() -> new BoshLanguageServer(
new BoshCommandCloudConfigProvider(),
(dc) -> null, //TODO: temporarily disabled.. reenable: new BoshCommandCloudConfigProvider(),
(dc) -> null //TODO: real model provider here!
));
}