Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxLaumeister committed Dec 24, 2019
1 parent 84d89e8 commit 16f6eba
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/Grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ class Grid {
* (highVolume - lowVolume) + lowVolume;

this.data[Util.coordToIndex(x, y, this.width)] = this.player.scheduleNote(x, y, volume);

} else {
if (!this.getTileValue(x, y)) return;
// Turning off, unschedule note
Expand Down
1 change: 0 additions & 1 deletion src/NotePlayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ class NotePlayer {

// eslint-disable-next-line class-methods-use-this
unscheduleNote(id) {
console.log(id);
Util.assert(arguments.length === 1);
Tone.Transport.clear(id);
}
Expand Down

0 comments on commit 16f6eba

Please sign in to comment.