diff --git a/src/languageService/services/yamlCompletion.ts b/src/languageService/services/yamlCompletion.ts index 897c551f..eb5c8bbf 100644 --- a/src/languageService/services/yamlCompletion.ts +++ b/src/languageService/services/yamlCompletion.ts @@ -44,7 +44,7 @@ export class YAMLCompletion { return this.promise.resolve(item); } - public doComplete(document: TextDocument, position: Position, doc: Parser.JSONDocument, isKubernetes: Boolean): Thenable { + public doComplete(document: TextDocument, position: Position, doc: Parser.JSONDocument): Thenable { let result: CompletionList = { items: [], diff --git a/src/languageService/services/yamlHover.ts b/src/languageService/services/yamlHover.ts index 3dcbb825..58ca1a94 100644 --- a/src/languageService/services/yamlHover.ts +++ b/src/languageService/services/yamlHover.ts @@ -25,7 +25,7 @@ export class YAMLHover { this.promise = promiseConstructor || Promise; } - public doHover(document: TextDocument, position: Position, doc: Parser.JSONDocument, isKubernetes: Boolean): Thenable { + public doHover(document: TextDocument, position: Position, doc: Parser.JSONDocument): Thenable { let offset = document.offsetAt(position); let currentDoc = matchOffsetToDocument(offset, doc); diff --git a/src/languageService/services/yamlValidation.ts b/src/languageService/services/yamlValidation.ts index 9ced13e7..b0a1dfe3 100644 --- a/src/languageService/services/yamlValidation.ts +++ b/src/languageService/services/yamlValidation.ts @@ -29,7 +29,7 @@ export class YAMLValidation { } } - public doValidation(textDocument, yamlDocument, isKubernetes) { + public doValidation(textDocument, yamlDocument) { if(!this.validationEnabled){ return this.promise.resolve([]);