stop spammy console.log call

This commit is contained in:
Benjamin Pasero 2016-08-23 07:20:05 +02:00
parent 1de7a23ccc
commit d0238031a0

View file

@ -38,7 +38,6 @@ function registerSettingsCompletions() : vscode.Disposable {
provideCompletionItems(document, position, token) {
const location = getLocation(document.getText(), document.offsetAt(position));
console.log(location);
if (!location.isAtPropertyKey && location.path[0] === 'files.iconTheme') {
let result: vscode.CompletionItem[] = [];
const range = document.getWordRangeAtPosition(position) || new vscode.Range(position, position);