Skip to content

Commit

Permalink
Removed lingering references of isKubernetes
Browse files Browse the repository at this point in the history
  • Loading branch information
JPinkney committed Feb 7, 2018
1 parent b84fba0 commit 28561b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/languageService/services/yamlCompletion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class YAMLCompletion {
return this.promise.resolve(item);
}

public doComplete(document: TextDocument, position: Position, doc: Parser.JSONDocument, isKubernetes: Boolean): Thenable<CompletionList> {
public doComplete(document: TextDocument, position: Position, doc: Parser.JSONDocument): Thenable<CompletionList> {

let result: CompletionList = {
items: [],
Expand Down
2 changes: 1 addition & 1 deletion src/languageService/services/yamlHover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class YAMLHover {
this.promise = promiseConstructor || Promise;
}

public doHover(document: TextDocument, position: Position, doc: Parser.JSONDocument, isKubernetes: Boolean): Thenable<Hover> {
public doHover(document: TextDocument, position: Position, doc: Parser.JSONDocument): Thenable<Hover> {

let offset = document.offsetAt(position);
let currentDoc = matchOffsetToDocument(offset, doc);
Expand Down
2 changes: 1 addition & 1 deletion src/languageService/services/yamlValidation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class YAMLValidation {
}
}

public doValidation(textDocument, yamlDocument, isKubernetes) {
public doValidation(textDocument, yamlDocument) {

if(!this.validationEnabled){
return this.promise.resolve([]);
Expand Down

0 comments on commit 28561b7

Please sign in to comment.