Skip to content

Commit

Permalink
cleanup a console.log in the JSON Schema regex resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed May 15, 2023
1 parent ab0a923 commit e9f57e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/SchemaTextCompleter.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class SchemaTextCompleter {
}
return mergedSuggestions
} else if (new RegExp(`^${path}${option}$`).test(pointer)) {
console.log('SchemaTextCompleter: Text suggestion match', { path: pointer, schemaPath: `${path}${option}`, suggestions: currentSuggestions[option] })
// console.log('SchemaTextCompleter: Text suggestion match', { path: pointer, schemaPath: `${path}${option}`, suggestions: currentSuggestions[option] })
return currentSuggestions[option]
}
}
Expand Down

0 comments on commit e9f57e7

Please sign in to comment.