Skip to content

Commit

Permalink
core: fix import in lsp-types.ts
Browse files Browse the repository at this point in the history
Import statement is refering to a package which is not part of core's
dependencies.

Signed-off-by: Paul Maréchal <paul.marechal@ericsson.com>
  • Loading branch information
paul-marechal committed Feb 4, 2020
1 parent cc0da4e commit 8cf1dec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/common/lsp-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/

import { Range } from 'vscode-languageserver-protocol';
import { Range } from 'vscode-languageserver-types';

export interface TextDocumentContentChangeDelta {
readonly range: Range;
Expand Down

0 comments on commit 8cf1dec

Please sign in to comment.