drop debug

This commit is contained in:
2026-03-12 15:56:04 -06:00
parent a08246b30f
commit f4f074b8e7

View File

@@ -112,7 +112,6 @@ impl Seq {
let s: String = s.to_string(); let s: String = s.to_string();
let s: &str = s.as_ref(); let s: &str = s.as_ref();
for split in s.split_whitespace() { for split in s.split_whitespace() {
eprintln!("append_one({:?}) from {:?}", split.to_string(), s);
self.append_one(split.to_string()); self.append_one(split.to_string());
} }
} }
@@ -127,7 +126,6 @@ impl Seq {
} as usize; } as usize;
let tone_s = captures.name("tone").unwrap().as_str(); let tone_s = captures.name("tone").unwrap().as_str();
eprintln!("append_one({:?})", tone_s);
let tone = tone::new(tone_s); let tone = tone::new(tone_s);
self.beats.push((n, tone)); self.beats.push((n, tone));
} }