This commit is contained in:
Martin Lippert
2020-03-10 12:50:14 +01:00
parent 9ef2f9f334
commit a47b42d08a
2 changed files with 2 additions and 2 deletions

View File

@@ -105,6 +105,7 @@ public class ClasspathListenerManager {
Mono<Void> registerCallbackCommand = Mono.defer(() -> Mono.fromFuture(
server.getClient().registerCapability(params)
));
Mono<Object> registerClasspathListener = Mono.defer(() -> Mono.fromFuture(
server.getClient().addClasspathListener(new ClasspathListenerParams(callbackCommandId, true))
));

View File

@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2016-2017 Pivotal, Inc.
* Copyright (c) 2016, 2017 Pivotal, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -8,7 +8,6 @@
* Contributors:
* Pivotal, Inc. - initial API and implementation
*******************************************************************************/
package org.springframework.ide.vscode.commons.languageserver.util;
import java.util.ArrayList;