added optimized version for single label searching + noteset cache fix

This commit is contained in:
zadam
2021-10-07 07:46:13 +02:00
parent 7152c5e51d
commit e10e18e63a
2 changed files with 11 additions and 4 deletions

View File

@@ -154,10 +154,10 @@ class Becca {
}
}
this.allNoteSet = new NoteSet(allNotes);
this.allNoteSetCache = new NoteSet(allNotes);
}
return this.allNoteSet;
return this.allNoteSetCache;
}
}