Skip to content

Commit 0b458d2

Browse files
committed
eliminate the duplication in config as it was added by mistake during pull
1 parent d8a86d2 commit 0b458d2

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

language-server/src/services/configuration.js

+1-9
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,7 @@ export class Configuration {
7474
this.#didChangeConfigurationHandlers = [];
7575

7676
this.#server.onDidChangeConfiguration((params) => {
77-
/** @type unknown */
78-
const settings = params.settings;
79-
80-
/** @type unknown */
81-
const fullSettings = {
82-
...this.#defaultSettings,
83-
.../** @type Settings */(settings).jsonSchemaLanguageServer
84-
};
85-
this.#settings = /** @type DocumentSettings */ (fullSettings);
77+
this.#settings = undefined;
8678
this.#matcher = undefined;
8779

8880
for (const handler of this.#didChangeConfigurationHandlers) {

0 commit comments

Comments
 (0)