Skip to content

Commit

Permalink
Optimize KeymapDB class and remove debug logs
Browse files Browse the repository at this point in the history
- Removed unnecessary debug logging in `selectCategory` method
  • Loading branch information
obra committed Mar 18, 2024
1 parent e877d84 commit 8783e40
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/api/focus/keymap/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,6 @@ class KeymapDB {
}
selectCategory(category) {
const cdb = [];
logger.log("in sleectCategory");
logger.log("category", category);

logger.log("this._codetable", this._codetable);

for (const k of this._codetable) {
if (k?.categories?.includes(category)) {
cdb.push(k);
Expand Down

0 comments on commit 8783e40

Please sign in to comment.