Skip to content

Commit 567a3e9

Browse files
Remove obsolete debug console output from abc widget (#4961)
* Remove obsolete debug console output from abc widget * simplify tuplet processing by removing redundant else clause * fix indentation to satisfy linting
1 parent e4219ba commit 567a3e9

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

js/abc.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -282,14 +282,9 @@ const processABCNotes = function (logo, turtle) {
282282

283283
logo.notationNotes[turtle] +=
284284
logo.notation.notationStaging[turtle][i + j][NOTATIONROUNDDOWN];
285-
j++; // Jump to next note.
286-
k++; // Increment notes in tuplet.
287-
} else {
288-
// eslint-disable-next-line no-console
289-
console.debug("ignoring " + notes);
290-
j++; // Jump to next note.
291-
k++; // Increment notes in tuplet.
292285
}
286+
j++; // Jump to next note.
287+
k++; // Increment notes in tuplet.
293288
}
294289

295290
// FIXME: Debug for ABC

0 commit comments

Comments
 (0)