Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
This commit removes the debug logging that was added for a different …
Browse files Browse the repository at this point in the history
…change.
  • Loading branch information
Ben committed Jul 7, 2016
1 parent cad2363 commit 76c98da
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/goSuggest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export class GoCompletionItemProvider implements vscode.CompletionItemProvider {
private gocodeConfigurationComplete = false;

public provideCompletionItems(document: vscode.TextDocument, position: vscode.Position, token: vscode.CancellationToken): Thenable<vscode.CompletionItem[]> {
console.log("My dude");
return this.ensureGoCodeConfigured().then(() => {
return new Promise<vscode.CompletionItem[]>((resolve, reject) => {
let filename = document.fileName;
Expand Down Expand Up @@ -140,7 +139,6 @@ export class GoCompletionItemProvider implements vscode.CompletionItemProvider {

// TODO: Shouldn't lib-path also be set?
private ensureGoCodeConfigured(): Thenable<void> {
console.log("configured");
return new Promise<void>((resolve, reject) => {
// TODO: Since the gocode daemon is shared amongst clients, shouldn't settings be
// adjusted per-invocation to avoid conflicts from other gocode-using programs?
Expand Down

0 comments on commit 76c98da

Please sign in to comment.